Bug Bounty
10.5K subscribers
369 photos
3 videos
46 files
426 links
Bugbounty Resources • Tips • Security Zines • Writeups • Vulnerability Update • Notes • Mindmaps • Cheatsheets • Checklists • Article / Blogs • PDFs • ebooks •
Download Telegram
Javascript Question!!
One of these will not give a syntax error!!
Anonymous Quiz
20%
if="A"
15%
null="A"
23%
undefined="A"
42%
All wrong
🤔12😈5
Javascript Question!!

Q) [] == ''
Anonymous Quiz
61%
true
39%
false
Bug Bounty
Javascript Question!!

Q) [] == ''
In JS (==) convert both values in the same type. In this case Empty String and Empty Array both are boolean value of false
So, they evaluate as equal
👍11
Bug Bounty
Javascript Question
Mark the correct output
Q) !!"false" == !!"true";
If a string is not empty == will convert it into boolean value of true so they both are equal 😊
😁6
Are you enjoying JavaScript Quiz!! Polls
Anonymous Poll
81%
Yes 👍
19%
No 🙅‍♂️
👍12👎2😁1
Javascript Question!!
Q: What is the output of the following code?
let x = 1; if (function f(){}) { x += typeof f; }
Anonymous Quiz
32%
Error
34%
"Number"
33%
"1undefined"
👎6🔥3
Type of f is undefined and we are adding typeof f to 1
So it is
"1undefined"
Js Question
const Früh = "foobar";
Will this assignment work ?
Anonymous Quiz
57%
Yes
43%
No
Penetration Testing Certifications

Field Wise Categorized

#bugbounty #infosec #cybersecurity
🔥10👍3
If You wanna Enter the field of Android Penetration Testing

Then, You should Open This Thread 🧵

Check Out My Thread Tweet: https://twitter.com/Aacle_/status/1613027118874759170?s=20&t=OsOm8ggHNNP9PY3yJYfLdA
👏4🔥1
Javascript Question!!
Q) [1,2,3]==[1,2,3]
Anonymous Quiz
75%
true
25%
false
🤯11👍5
Bug Bounty
Js Question
const Früh = "foobar";
Will this assignment work ?
js support unicode so 'ü' this is allowed in the variable name so the answer is true!!
👍4
Javascript Question!!
Q8) if '50'+1 is 501
What will be '40'-1 ?
Anonymous Quiz
23%
400
31%
401
47%
39
👍10
Is this level of JS is good ?
Anonymous Poll
74%
Yes, we want more
13%
No!!
13%
Don't Know
🚀 API SECURITY TIP

"Trying to find BOLA (IDOR) in APIs, got 401/403 errors? AuthZ bypass tricks:

• Wrap ID with an array {“id”:111} --> {“id”:[111]}
• JSON wrap {“id”:111} --> {“id”:{“id”:111}}
• Send ID twice URL?id=<LEGIT>&id=<VICTIM>
• Send wildcard {""user_id"":""*""}"
🔥203👍2
🚀 Amazing XSS Guide

Collection of Awesome XSS resources and help you to understand XSS sanitization and tricks to bypass it

https://github.com/s0md3v/AwesomeXSS

#bugbounty #infosec #hacking #cybersecurity #penetrationtesting
19🔥4
Bug Bounty
Javascript Question!!
Q) [1,2,3]==[1,2,3]
[1,2,3]==[1,2,3] is false because JavaScript actually has two different approaches for testing equality. Primitives like strings and numbers are compared by their value, while objects like arrays, dates, and plain objects are compared by their reference. That comparison by reference basically checks to see if the objects given refer to the same location in memory.
👍94🔥2🤔2👏1
Javascript Question!!
Q9) {}==={}
Anonymous Quiz
61%
true
39%
false
🤔8👍4👌1