Quick WAF paranoid Doctor Evaluation

WAFPARAN01D3 The Web Application Firewall Paranoia Level Test Tool. — From alt3kx.github.io Introduction to Paranoia Levels In essence, the Paranoia Level (PL) allows you to define how aggressive the Core Rule Set is. Reference: https://coreruleset.org/20211028/working-with-paranoia-levels/ How it works The wafparan01d3.py python3 script takes malicious requests using encoded payloads placed in different parts of HTTP requests based on GET parameters, The results of the evaluation are recorded in the report debug file wafparan01d3.log created on your machine. Observe the behavior and […]

Read more

It’s About Time: Analog clock Reading in the Wild

Code repository for “It’s About Time: Analog clock Reading in the Wild” Packages required:pytorch (used 1.9, any reasonable version should work), kornia (for homography), einops, scikit-learn (for RANSAC), tensorboardX (for logging) Using pretrained model: prediction python predict.py will predict on your data (or by default, whatever is in data/demo). This does assume the images being already cropped, we use CBNetv2. (you could instead add something like a yolov5 to the code if you prefer not installing anything extra). evaluation python […]

Read more

ProtoAttend: Attention-Based Prototypical Learning

Authors: Sercan O. Arik and Tomas Pfister Paper: Sercan O. Arik and Tomas Pfister, “ProtoAttend: Attention-Based Prototypical Learning”Link: https://arxiv.org/abs/1902.06292 We propose a novel inherently interpretable machine learning method that bases decisions on few relevant examples that we call prototypes. Our method, ProtoAttend, can be integrated into a wide range of neural network architectures including pre-trained models. It utilizes an attention mechanism that relates the encoded representations to samples in order to determine prototypes. The resulting model outperforms state of the […]

Read more

A API project made with Django, and without Django REST framework

This is a API project made with Django, and without Django REST framework. This project was done with: How to run project? Clone this repository. Create virtualenv with Python 3. Active the virtualenv. Install dependences. Run the migrations. git clone https://github.com/rg3915/django-api-without-drf.git cd django-api-without-drf python -m venv .venv source .venv/bin/activate pip install -r requirements.txt python contrib/env_gen.py python manage.py migrate python manage.py createsuperuser –username=”admin” –email=”” endpoints

Read more

Script that performs the identification of all logins and passwords of the wifis connected to a machine and sends the data to a specified email

Script que realiza a identificação de todos os logins e senhas dos wifis conectados em uma máquina e envia os dados para um e-mail especificado. Instalação Para configurar o sistema para desenvolvimento em sua máquina local, siga as instruções abaixo: Clone o repositório para sua máquina git clone https://github.com/vmeazevedo/getWIFIConnection Realize a alteração do e-mail do remetente e destinatário e também a inclusão do token de validação do email. Execute o arquivo python getWifiConnection.py. Exemplo GitHub View Github    

Read more

Astro Bot With Golang

Features: Astronomy Picture of the day Horoscope People In Space How we built it Our team was broken, one person didn’t do anything the other sent copied code, so in the last two hours I learnt discord.py and built this bot, and my team memeber miffy provided the icon for the avatar of the bot, which she had drawn herself. Challenges I faced while coding 2 hours of time and a new library I had no info about how to […]

Read more

A Material Design theme for MkDocs

A Material Design theme for MkDocs Create a branded static site from a set of Markdown files to host the documentation of your Open Source or commercial project – customizable, searchable, mobile-friendly, 40+ languages. Set up in 5 minutes. A demo is worth a thousand words — check it out at

Read more

Numpydoc : Numpy’s Sphinx extensions

numpydoc — Numpy’s Sphinx extensions This package provides the numpydoc Sphinx extension for handling docstrings formatted according to the NumPy documentation format. The extension also adds the code description directives np:function, np-c:function, etc. numpydoc requires Python 3.5+ and sphinx 1.6.5+. For usage information, please refer to the documentation. The numpydoc docstring guide explains how to write docs formatted for this extension, and the user guide explains how to use it with Sphinx. GitHub https://github.com/numpy/numpydoc    

Read more

ReStructuredText and Sphinx bridge to Doxygen

Packagers: PGP signing key changes for Breathe >= v4.23.0. https://github.com/michaeljones/breathe/issues/591 This is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output. Download Breathe is available from github and PyPI, the Python Package Index. It can be installed with: pip install breathe Documentation The documentation is available here. Thank you to the people running Read the Docs for such an excellent service. The source for the documentation is in the documentation folder if […]

Read more

Watch a Sphinx directory and rebuild the documentation when a change is detected

Rebuild Sphinx documentation on changes, with live-reload in the browser. Installation sphinx-autobuild is available on PyPI. It can be installed using pip: pip install sphinx-autobuild Usage To build a classical Sphinx documentation set, run: sphinx-autobuild docs docs/_build/html This will start a server at http://127.0.0.1:8000 and start watching for changes in the docs/ directory. When a change is detected in docs/, the documentation is rebuilt and any open browser windows are reloaded automatically. KeyboardInterrupt (ctrl+c) will stop the server. Command line […]

Read more
1 352 353 354 355 356 928