Python tool to Check running WebClient services on multiple targets

WebClient Service Scanner Python tool to Check running WebClient services on multiple targets based on @tifkin_ idea. This tool uses impacket project. Usage webclientservicescanner hackn.lab/user:[email protected]/24 Provided credentials will be tested against a domain controller before scanning so that a typo in the domain/username/password won’t lock out the account. If you want to bypass this check, just use -no-validation flag. Exploitation Green entries mean that WebDav client is active on remote host. Using PetitPotam or PrinterBug, an HTTP authentication can be […]

Read more

Self-Promoted Prototype Refinement for Few-Shot Class-Incremental Learning

SPPR Self-Promoted Prototype Refinement for Few-Shot Class-Incremental LearningThis is the implementation of the paper “Self-Promoted Prototype Refinement for Few-Shot Class-Incremental Learning” (accepted to CVPR2021). Requirements Python 3.8 PyTorch 1.8.1 (>1.1.0) cuda 11.2 Preparing Few-Shot Class-Incremental Learning Datasets Download following datasets: 1. CIFAR-100 Automatically downloaded on torchvision. 2. MiniImageNet (1) Download MiniImageNet train/test images[github],and prepare related datasets according to [TOPIC]. (2) or Download processed data from our Google Drive: [mini-imagenet.zip],(and locate the entire folder under datasets/ directory). 3. CUB200 (1) Download […]

Read more

A library for finding knowledge neurons in pretrained transformer models

knowledge-neurons An open source repository replicating the 2021 paper Knowledge Neurons in Pretrained Transformers by Dai et al., and extending the technique to autoregressive models, as well as MLMs. The Huggingface Transformers library is used as the backend, so any model you want to probe must be implemented there. Currently integrated models: BERT_MODELS = [“bert-base-uncased”, “bert-base-multilingual-uncased”] GPT2_MODELS = [“gpt2”] GPT_NEO_MODELS = [ “EleutherAI/gpt-neo-125M”, “EleutherAI/gpt-neo-1.3B”, “EleutherAI/gpt-neo-2.7B”, ] The technique from Dai et al. has been used to locate knowledge neurons in […]

Read more

Boilerplate code for quick docker implementation of REST API

Boilerplate code for quick docker implementation of REST API with JWT Authentication using FastAPI, PostgreSQL and PgAdmin. Getting Started Features Auth Description Login Access Token OAuth2 compatible token login, get an access token for future requests Check Session Test if a user is logged in by checking if a valid access token is in the header Recover Password Password Recovery Reset Password Reset your password User Description Create New User Create a new user Get Current User By Id Get […]

Read more

A Relational Database Management System for a miniature version of Twitter written in python

Mini-Twitter-Database This was done as a database design course project at Amirkabir university of technology. This is a relational database management system that is built using MySQL and works with CLI in python. This project contains the following files: tables.sql: A DDL script to generate relational tables for our mini-twitter schema including relevant constraints. procedures.sql: Several procedures to perform complex queries. triggers.sql: Some triggers that are sensitive to a particular event and perform specific tasks as they occur. Relational_schema.png: Relational […]

Read more

A work-in-progress vector version of the MNIST dataset

bezier-mnist This is a work-in-progress vector version of the MNIST dataset. Here are some samples from the training set. Note that, while these are rasterized, the underlying images can be rendered at any resolution because they are smooth vector graphics. ![A grid of sixteen digit images](https://github.com/unixpickle/bezier-mnist/raw/main/samples.png =300×300) I have already converted all of MNIST to Bezier curves. This dataset can be downloaded at this page. There are two files: train.zip and test.zip, each containing a separate json file for each […]

Read more

Pydantic models for Django

Djantic Documentation: https://jordaneremieff.github.io/djantic/ Requirements: Python 3.7+, Django 3.0+ Pydantic models for Django. This project should be considered a work-in-progress. It should be okay to use, but no specific version support has been determined (#16) and the default model generation behaviour may change across releases. Please use the issues tracker to report any bugs, or if something seems incorrect. Quickstart Install using pip: pip install djantic Generating schemas from models Configure a custom ModelSchema class for a Django model to generate […]

Read more

An Asynchronous Python object-document mapper for MongoDB

beanie Beanie – is an Asynchronous Python object-document mapper (ODM) for MongoDB, based on Motor and Pydantic. When using Beanie each database collection has a corresponding Document that is used to interact with that collection. In addition to retrieving data, Beanie allows you to add, update, or delete documents from the collection as well. Beanie saves you time by removing boiler-plate code and it helps you focus on the parts of your app that actually matter. Data and schema migrations […]

Read more

Unofficial PyTorch implementation of Google AI’s VoiceFilter system

Hi everyone! It’s Seung-won from MINDs Lab, Inc. It’s been a long time since I’ve released this open-source, and I didn’t expect this repository to grab such a great amount of attention for a long time. I would like to thank everyone for giving such attention, and also Mr. Quan Wang (the first author of the VoiceFilter paper) for referring this project in his paper. Actually, this project was done by me when it was only 3 months after I […]

Read more

A library for the Unbounded Interleaved-State Recurrent Neural Network algorithm

UIS-RNN This is the library for the Unbounded Interleaved-State Recurrent Neural Network (UIS-RNN) algorithm, corresponding to the paper Fully Supervised Speaker Diarization. This algorithm was originally proposed in the paperFully Supervised Speaker Diarization. The work has been introduced byGoogle AI Blog. Disclaimer This open source implementation is slightly different than the internal onewhich we used to produce the results in thepaper, due to dependencies onsome internal libraries. We CANNOT share the data, code, or model for the speaker recognition system(d-vector […]

Read more
1 513 514 515 516 517 913