Title is wrong. Should be: s/party/hack/ like it's 1999
S/party/hack like it's 1999
11–20 of 33 posts
Re: S/party/hack like it's 1999
#12Combine this with https://thejh.net/misc/website-terminal-copy-paste and you've got something especially nasty.
Re: S/party/hack like it's 1999
#13But it wouldn't fool any text editor, right? Or even less ?
Re: S/party/hack like it's 1999
#14But it wouldn't fool any text editor, right? Or even less ?
Did you read the article? "'less' doesn't interpret escape sequences unless the -r switch is used, so stop aliasing it to 'less -r' just because there's no colored output."
Re: S/party/hack like it's 1999
#15> Hint: > 'less' doesn't interpret escape sequences unless the -r switch is used, > so stop aliasing it to 'less -r' just because there's no colored output.
Instead you can just use `less -R` which allows colored output but doesn't interpret any other escape sequences.
Re: S/party/hack like it's 1999
#16I can't decide whether this is evil, genius or disturbing. I don't typically copy paste curl commands, but it never occurred to me that even if you check the URL curl is pointing to with your browser that's no guarantee that the same script will be downloaded and parsed in the server.
Re: S/party/hack like it's 1999
#17> You might be thinking "If I opened that in my browser, I would detect it being malicious!" Well, think again... One can have all sorts of fun with user-agents, something that can easily come to mind is verifying if the user-agent is from curl or wget, and make them download the malicious file, if not, redirect them to a legitimate file that looks like the original output. Your browser would fool you then. I can't d…