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
| #!/bin/bash | |
| # this bot will put your name in izabera's 1-2-3 ranking | |
| # https://github.com/izabera/1-2-3 | |
| # run it with socat like: | |
| # socat TCP4:arin.ga:44444 EXEC:/full/path/to/record.sh,fdin=3,fdout=3,sigint | |
| read -n4 line <&3 | |
| echo "a">&3 | |
| ans=0 | |
| score=0 ct=0 | |
| trap errar INT |
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
| #!/bin/bash | |
| # this bot will put your name in izabera's 1-2-3 ranking | |
| # https://github.com/izabera/1-2-3 | |
| # run it with socat like: | |
| # socat TCP4:arin.ga:44444 EXEC:/full/path/to/record.sh,fdin=3,fdout=4 | |
| # | |
| read -n4 line <&3 | |
| echo "a">&4 | |
| ans=0 | |
| score=0 |
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
| # Basic usage | |
| ./sqlmap.py -u "inject address" --dbs // enumerate database | |
| ./sqlmap.py -u "inject address" --current-db // current database | |
| ./sqlmap.py -u "inject address" --users // column database user | |
| ./sqlmap.py -u "inject address" --current-user // current user | |
| ./sqlmap.py -u "inject address" --tables -D "database" // enumerate the table name of the database | |
| ./sqlmap.py -u "inject address" --columns -T "table name" -D "database" // get the column name of the table | |
| ./sqlmap.py -u "inject address" --dump -C "field, field" -T "table name" -D "database" // get the data in the table, including the column, is the pants |
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
| Enabling cedilla and dead keys on kali linux | |
| change: | |
| "cedilla" "Cedilla" "gtk20" "/usr/share/locale" "az:ca:co:fr:gv:oc:pt:sq:tr:wa" | |
| to | |
| "cedilla" "Cedilla" "gtk20" "/usr/share/locale" "az:ca:co:fr:gv:oc:pt:sq:tr:wa:en" | |
| on these files: | |
| /usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache | |
| /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules.cache |
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
| eyJwcmV2aW91cyI6e30sInZlcnNpb24iOjEuMywiZmVhdHVyZXMiOnsibG9jYXRpb24iOnsicm9vbSI6dHJ1ZSwib3V0c2lkZSI6dHJ1ZSwid29ybGQiOnRydWUsInNwYWNlU2hpcCI6dHJ1ZX19LCJzdG9yZXMiOnsid29vZCI6MTA4ODc5LCJmdXIiOjkyMTU3OSwibWVhdCI6MTAwODgzLCJ0ZWV0aCI6OTk5NzgsInNjYWxlcyI6OTk5ODYxLCJiYWl0Ijo5MTAzMDYsImNsb3RoIjo5OTkzNSwibGVhdGhlciI6OTY4NjQsImN1cmVkIG1lYXQiOjkyODY1LCJ0b3JjaCI6OTk5OTgyLCJib25lIHNwZWFyIjowLCJsIGFybW91ciI6MSwid2F0ZXJza2luIjoxLCJydWNrc2FjayI6MSwiY29tcGFzcyI6MSwiY2hhcm0iOjk5OTk0LCJpcm9uIjo5OTUzNCwibWVkaWNpbmUiOjk5OTg3LCJpIGFybW91ciI6MSwiaXJvbiBzd29yZCI6OTk5ODgsImNhc2siOjEsIndhZ29uIjoxLCJjb2FsIjo5Mjk3NiwiYWxpZW4gYWxsb3kiOjk5OTgwNSwic3RlZWwgc3dvcmQiOjk5OTg4LCJzdGVlbCI6OTk2NTgsIndhdGVyIHRhbmsiOjEsImNvbnZveSI6MSwicyBhcm1vdXIiOjEsImJ1bGxldHMiOjEwMDIzNSwicmlmbGUiOjk5OTEsImVuZXJneSBjZWxsIjoxMDAwMDgsImJvbGFzIjo5OTkxMiwiZ3JlbmFkZSI6OTk5OTUyLCJiYXlvbmV0Ijo5OTk5Nywic3VscGh1ciI6OTk3NDQsImxhc2VyIHJpZmxlIjo5OTk5OX0sImNoYXJhY3RlciI6eyJzdGFydmVkIjo2LCJwZXJrcyI6eyJzdGVhbHRoeSI6dHJ1ZSwicHJlY2lzZSI6dHJ1ZSwic2NvdXQiOnRydWUsImV2YXNpdmUiOnRydWUs |
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
| #!/bin/bash | |
| trap 'stats' SIGINT SIGTERM | |
| (( $# != 4 )) && (( $# != 2 )) && { echo "($#) uso: $0 -u <url de ataque> { -t <timeout de cada acesso (default 3)> }"; exit 3; } | |
| while getopts "u:t:" option | |
| do | |
| case "$option" in | |
| u) url="$OPTARG";; | |
| t) timeout="$OPTARG";; | |
| esac |
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
| <!DOCTYPE html> | |
| <html dir="ltr" lang="pt-BR"><head> | |
| <meta charset="utf-8"> | |
| <title>Redefinição Automática de Senha</title> | |
| <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width"> | |
| <!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> | |
| <link rel="stylesheet" href="style.css" media="screen"> | |
| <!--[if lte IE 7]><link rel="stylesheet" href="style.ie7.css" media="screen" /><![endif]--> | |
| <link rel="stylesheet" href="style.responsive.css" media="all"> |
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
| <!DOCTYPE html> | |
| <html dir="ltr" lang="pt-BR"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Redefinição Automática de Senha</title> | |
| <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width"> | |
| <!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> | |
| <link rel="stylesheet" href="style.css" media="screen"> | |
| <!--[if lte IE 7]><link rel="stylesheet" href="../style.ie7.css" media="screen" /><![endif]--> |
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
| <form class="form_ajax" action="usureset.php" method="post" enctype="multipart/form-data" data-title="E-mail" onsubmit="this.disabled=true; this.value='Solicitação Enviada...';"> | |
| <table> | |
| <tbody> | |
| <tr> | |
| <td style="text-align: right; "><b>Login:</b></td> | |
| <td> | |
| <input type="text" name="login" id="login" size="28" onblur="javascript:this.value=this.value.toLowerCase();" autocomplete="off"> | |
| </td> | |
| </tr> | |
| <tr> |
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
| <script > | |
| $(function(){ | |
| $("form.form_ajax").on('submit',function(event){ | |
| event.preventDefault(); | |
| console.log('submit'); | |
| var | |
| $this = $(this), | |
| $dialog = null, | |
| titulo = $this.data('title') | |
| ; |