Skip to content

Instantly share code, notes, and snippets.

View slaee's full-sized avatar
🏴‍☠️
Don't play god without permission.

slaee slaee

🏴‍☠️
Don't play god without permission.
  • Unable to recognize
View GitHub Profile
@slaee
slaee / GoogleDorking.md
Created May 1, 2024 10:55 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@slaee
slaee / README.md
Created February 26, 2024 04:29 — forked from arkark/README.md
bi0sCTF 2024 - web/required notes & web/required notes revenge
@slaee
slaee / escape.js
Created February 15, 2024 09:12 — forked from jcreedcmu/escape.js
Escaping nodejs vm
////////
// The vm module lets you run a string containing javascript code 'in
// a sandbox', where you specify a context of global variables that
// exist for the duration of its execution. This works more or less
// well, and if you're in control of the code that's running, and you
// have a reasonable protocol in mind// for how it expects a certain
// context to exist and interacts with it --- like, maybe a plug-in
// API for a program, with some endpoints defined for it that do
// useful domain-specific things --- your life can go smoothly.
@slaee
slaee / copyright.txt
Created October 2, 2023 12:31 — forked from a613/copyright.txt
Maze Solver in Python

ORIGINAL HERE: https://stackoverflow.com/questions/4012352/linux-dual-mice-multiple-mice-with-multiple-mouse-pointers

I've found a way to do it, but it causes major tearing with Gnome.

  1. Open a terminal and type in xinput (all commands should be done as normal user).
  2. Look at the id of the one of your mice or touchpad.
  3. Then create a new master device with this command xinput create-master "name". (any name of your choice.)
  4. Get the new master "name" numeric id.
  5. Now you just need to reattach one of your mice to the new master xinput reattach "mouse id" "new master id".