This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| ```bash | |
| pip install flask | |
| python server.py | |
| ``` | |
| The serveur use http://127.0.0.1:8000 and http://localhost:8000 as two differents | |
| origins. So remember to test with this two URLs. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from flask import Flask, flash, request, redirect, url_for | |
| from werkzeug.utils import secure_filename | |
| UPLOAD_FOLDER = './uploads' | |
| app = Flask(__name__) | |
| app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER | |
| def allowed_file(filename): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from burp import IBurpExtender | |
| from burp import IMessageEditorTabFactory | |
| from burp import IMessageEditorTab | |
| from burp import IParameter | |
| from burp import IHttpRequestResponse | |
| import java.io | |
| import java.util.zip | |
| import org.python.util | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* From: https://github.com/texane/nrf/blob/master/unit/range/nrf905_decoder/main.c */ | |
| /* | |
| * gcc -O2 -Wall -o nrf905_decoder nrf905_decoder.c | |
| * sudo rtl_fm -f 433000000 -s 1600k -g 0 | ./nrf905_decoder - | |
| */ | |
| /* center frequency: 433MHz */ | |
| /* frequency deviation: 100KHz */ | |
| /* data rate: 100Kbps (symbol rate 50Kbps) */ |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.