Replies: 6 comments 5 replies
-
Could you send an example of an HTML page to my Discord handle, @p3tr0v? EDIT: Or just paste it here. I'm going to try and reproduce it by mocking its page. |
Beta Was this translation helpful? Give feedback.
-
Hi @dwisiswant0 !
Is it enough? |
Beta Was this translation helpful? Give feedback.
-
Inspecting by browser developer tools, after POST login, I got in response just the string "$.ret=0;" |
Beta Was this translation helpful? Give feedback.
-
I will investigate this. |
Beta Was this translation helpful? Give feedback.
-
What does this action do, @p3tr0v? - action: click
args:
by: xpath
xpath: /html/body/div[3]/div[2]/div[2]/div[1]/div[2]/div[2]/div/div/div[1]/span[1] It seems like it's hanging during that action. |
Beta Was this translation helpful? Give feedback.
-
Here's a simple tip from me. If you want to make sure that your XPath I valid, try running document.evaluate('YOUR_XPATH', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue; If it returns the element node itself, then you can be sure that it's valid. Based on what you've shared (#5584 (comment)), your current XPath is returning I will convert this into a discussion. |
Beta Was this translation helpful? Give feedback.
-
Is there an existing issue for this?
Current Behavior
I'm studying nuclei and trying to bruteforce my home TP-Link ADSL.
I have to use headless since every login the modem use a new random AES key.
The script emulate a browser interaction, then after sending the login it just close with no right response.
I'm using the default password, that is correct.
I have to look for a string that tells me the login was successful.
But nuclei just finish with no waitload for the response
My script:
My command:
nuclei -u 10.1.1.1 -t projects/nuclei/tplink_bruteforce/tplink_bt_headless.yaml -v -headless -allow-local-file-access -show-browser
The result:
Expected Behavior
Tell if bruteforce was success or not.
Steps To Reproduce
Relevant log output
No response
Environment
Anything else?
No response
Beta Was this translation helpful? Give feedback.
All reactions