Discuss Scratch

DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

Wait, I just realized…

You can actually type a video ID in the search bar, and the first result will be the video with that ID! Test it out!
You could possibly do a rickroll with this information..
The_Challenge_Vault
New Scratcher
100+ posts

Rickrolling people in advanced ways

DifferentDance8 wrote:

Wait, I just realized…

You can actually type a video ID in the search bar, and the first result will be the video with that ID! Test it out!
You could possibly do a rickroll with this information..
1 vulnerability: The person would need to click the video and huh… they would see the thumbnail before clicking the video…

Edit: 500073 lol

Last edited by The_Challenge_Vault (April 25, 2023 11:28:11)

DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

The_Challenge_Vault wrote:

DifferentDance8 wrote:

Wait, I just realized…

You can actually type a video ID in the search bar, and the first result will be the video with that ID! Test it out!
You could possibly do a rickroll with this information..
1 vulnerability: The person would need to click the video and huh… they would see the thumbnail before clicking the video…

Edit: 500073 lol
not if i make a script that does that for you
gilbert_given_189
Scratcher
1000+ posts

Rickrolling people in advanced ways

Has somebody here rickrolled someone from an XSS vulnerability?
DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

gilbert_given_189 wrote:

Has somebody here rickrolled someone from an XSS vulnerability?
first, we would have to find an XSS vulnerability. and that would have terrible ramifications
coolcoder1213
Scratcher
100+ posts

Rickrolling people in advanced ways

DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

coolcoder1213 wrote:

https://www.youtube.com/watch?v=dQw4w9WgXcQ
That's not advanced
Chiroyce
Scratcher
1000+ posts

Rickrolling people in advanced ways

The_Challenge_Vault wrote:

1 vulnerability: The person would need to click the video and huh… they would see the thumbnail before clicking the video…
That is the opposite of a vulnerability lol
gilbert_given_189
Scratcher
1000+ posts

Rickrolling people in advanced ways

DifferentDance8 wrote:

gilbert_given_189 wrote:

Has somebody here rickrolled someone from an XSS vulnerability?
first, we would have to find an XSS vulnerability. and that would have terrible ramifications
Early August 2022 was an interesting time indeed…
*ahem* I mean, yeah it would.

Last edited by gilbert_given_189 (April 25, 2023 11:47:34)

DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

gilbert_given_189 wrote:

Early August 2022 was an interesting time indeed…
wait what happened
The_Challenge_Vault
New Scratcher
100+ posts

Rickrolling people in advanced ways

Chiroyce wrote:

The_Challenge_Vault wrote:

1 vulnerability: The person would need to click the video and huh… they would see the thumbnail before clicking the video…
That is the opposite of a vulnerability lol
Hmm… Rick-ratio'd!
CST1229
Scratcher
1000+ posts

Rickrolling people in advanced ways

DifferentDance8 wrote:

(#910)

gilbert_given_189 wrote:

Early August 2022 was an interesting time indeed…
wait what happened
Someone found an XSS vulnerability in the TBG forums, and that forced staff to disable BBCode entirely because the person with access to the server (to patch the issue) is inactive.
PcUserPro
Scratcher
500+ posts

Rickrolling people in advanced ways

coolcoder1213 wrote:

https://www.youtube.com/watch?v=dQw4w9WgXcQ
That's nothing related to Advanced rickrolling. This is just simple link to original video. Advanced rickrolling is (just an example, you can think about other ways, this is why this topic is created) using a code to port rickroll to devices, platforms and applications where it doesn't meant to be or this wasn't created to play videos or something similar. This has to be done WITHOUT opening the link (except for devices that normally can't play YouTube videos). Sometimes it uses ASCII art to show the rickroll. I hope you understood sending the link isn't advanced rickrolling.
WojtekGame
Scratcher
1000+ posts

Rickrolling people in advanced ways

PcUserPro wrote:

coolcoder1213 wrote:

https://www.youtube.com/watch?v=dQw4w9WgXcQ
That's nothing related to Advanced rickrolling. This is just simple link to original video. Advanced rickrolling is (just an example, you can think about other ways, this is why this topic is created) using a code to port rickroll to devices, platforms and applications where it doesn't meant to be or this wasn't created to play videos or something similar. This has to be done WITHOUT opening the link (except for devices that normally can't play YouTube videos). Sometimes it uses ASCII art to show the rickroll. I hope you understood sending the link isn't advanced rickrolling.
python rickroll indeed, but it has to be unreadable, as an example.
DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

CST1229 wrote:

DifferentDance8 wrote:

(#910)

gilbert_given_189 wrote:

Early August 2022 was an interesting time indeed…
wait what happened
Someone found an XSS vulnerability in the TBG forums, and that forced staff to disable BBCode entirely because the person with access to the server (to patch the issue) is inactive.
Oh, so that's why everything breaks if I don't use a userscript!
PcUserPro
Scratcher
500+ posts

Rickrolling people in advanced ways

When someone tries to rickroll with the youtube link: 1) it sometimes displays ads - makes you wait and people often close the tab and don't get rickrolled; 2) people don't have autoplay on. I think I found a solution for this. GIFs are technically images and you can't block autoplay or add ads before images. You can use this link for the rickroll gif link (just the image, not a page for image): https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif . I wrote a little python script to open it and this will 100% rickroll someone:
#pip intstall webrowser
import webbrowser
url = "https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif"
webbrowser.open_new(url)
And it works instantly.

Last edited by PcUserPro (April 30, 2023 04:47:01)

DifferentDance8
Scratcher
1000+ posts

Rickrolling people in advanced ways

PcUserPro wrote:

When someone tries to rickroll with the youtube link: 1) it sometimes displays ads - makes you wait and people often close the tab and don't get rickrolled; 2) people don't have autoplay on. I think I found a solution for this. GIFs are technically images and you can't block autoplay or add ads before images. You can use this link for the rickroll gif link (just the image, not a page for image): https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif . I wrote a little python script to open it and this will 100% rickroll someone:
#pip intstall webrowser
import webbrowser
url = "https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif"
webbrowser.open_new(url)
And it works instantly.
this (also just the image) one is better, as it doesn't have annoying text on it
WojtekGame
Scratcher
1000+ posts

Rickrolling people in advanced ways

DifferentDance8 wrote:

PcUserPro wrote:

When someone tries to rickroll with the youtube link: 1) it sometimes displays ads - makes you wait and people often close the tab and don't get rickrolled; 2) people don't have autoplay on. I think I found a solution for this. GIFs are technically images and you can't block autoplay or add ads before images. You can use this link for the rickroll gif link (just the image, not a page for image): https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif . I wrote a little python script to open it and this will 100% rickroll someone:
#pip intstall webrowser
import webbrowser
url = "https://media.tenor.com/CWgfFh7ozHkAAAAC/rick-astly-rick-rolled.gif"
webbrowser.open_new(url)
And it works instantly.
this (also just the image) one is better, as it doesn't have annoying text on it
and also someone needs to encode it first, then decode it and send them to the rickroll.
unsullied123-rblx
Scratcher
100+ posts

Rickrolling people in advanced ways

while (true) {window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes')}
don't run this, for the sake of your computer
also i suck at javascript so i'm not 100% sure if it works, but i'll test it after posting this

edit: it crashes chrome lol
here is a new version that doesn't just spam windows
window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes')

Last edited by unsullied123-rblx (May 2, 2023 05:43:47)

WojtekGame
Scratcher
1000+ posts

Rickrolling people in advanced ways

unsullied123-rblx wrote:

while (true) {window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes')}
don't run this, for the sake of your computer
also i suck at javascript so i'm not 100% sure if it works, but i'll test it after posting this

edit: it crashes chrome lol
here is a new version that doesn't just spam windows
window.open('https://www.youtube.com/watch?v=dQw4w9WgXcQ', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes')

do it in base64 -_-

Powered by DjangoBB