Moving the PHP trunk to /branches/PHPBeEF/

git-svn-id: https://beef.googlecode.com/svn/trunk@502 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
scotty.b.brown
2010-11-11 09:13:03 +00:00
parent eb184fa943
commit 8d073f8738
204 changed files with 0 additions and 18946 deletions

View File

@@ -1,46 +0,0 @@
<?php
// Copyright (c) 2006-2010, Wade Alcorn
// All Rights Reserved
// wade@bindshell.net - http://www.bindshell.net
// Module by: Joshua "Jabra" Abraham <jabra@spl0it.org>
// http://blog.spl0it.org
// Thu Jul 9 02:09:25 EDT 2009
require_once("../../../include/common.inc.php"); // included for get_b64_file()
DEFINE('JS_FILE', './template.js');
?>
<script>
function get_b64_code_tor_enabled() {
// javascript is loaded from a file - it could be hard coded
var b64code = '<?php echo get_b64_file(JS_FILE); ?>';
return b64code;
}
Element.Methods.set_autorun = function() {
ar.enable('Detect ToR', get_b64_code_tor_enabled());
}
Element.Methods.send_now = function() {
do_send(get_b64_code_tor_enabled());
}
// add construct code to DOM
Element.addMethods();
</script>
<!-- PAGE CONTENT -->
<div id="module_header">Detect TOR</div>
This module will detect if the zombie is using TOR (The Onion Router). <br><br>
<div id="module_subsection">
<form name="myform">
<div id="module_subsection_header"></div>
<input class="button" type="button" value=" Set Autorun " onClick="javascript:set_autorun()"/>
<input class="button" type="button" value=" Send Now " onClick="javascript:send_now()"/>
</form>
</div>

View File

@@ -1 +0,0 @@
Detect TOR

View File

@@ -1,25 +0,0 @@
function using_tor() {
result = "Tor is being used";
}
function not_using_tor() {
result = "Tor is NOT being used";
}
function do_main() {
var img = new Image();
img.onload = using_tor();
img.onerror = not_using_tor();
img.setAttribute("width", "0");
img.setAttribute("height", "0");
img.setAttribute("style", "visibility:hidden;");
img.src = 'http://dige6xxwpt2knqbv.onion/wink.gif';
document.body.appendChild(img);
return "Request Sent";
}
var result = null;
do_main();
return_result(result_id, result);