mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-05 00:05:07 -04:00
some small fixes
This commit is contained in:
parent
fdbba7131b
commit
e31dad6dc9
2 changed files with 31 additions and 0 deletions
Binary file not shown.
Before Width: | Height: | Size: 16 KiB |
31
Web_Exploits/php/xor.php
Executable file
31
Web_Exploits/php/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