I hereby claim:
- I am find-evil on github.
- I am jacquelinestokes (https://keybase.io/jacquelinestokes) on keybase.
- I have a public key whose fingerprint is 9F86 7287 B1B7 900C 795C 1D15 9719 9ABB 544E D97E
To claim this, I am signing this object:
| // Open direct messages window, paste this into console. | |
| function deleteNextConversation() | |
| { | |
| if (!(dm = document.getElementsByClassName("DMInbox-conversationItem")[0])) { | |
| clearInterval(tmr) | |
| return; | |
| } | |
| dm.firstChild.click(); | |
| setTimeout('document.getElementsByClassName("js-actionDeleteConversation")[0].click()', 1000); |
| #!/bin/bash | |
| # usage: dir2html.sh [dir] > index.html | |
| INDEX=`ls -1 $1 | sed "s/^.*/ <li\>\<a\ href=\"&\"\>&\<\\/a\>\<\\/li\>/"` | |
| echo "<html> | |
| <head><title>Index of $1</title></head> | |
| <body> | |
| <h2>Index of $1</h2> | |
| <hr> | |
| <ui> | |
| $INDEX |
I hereby claim:
To claim this, I am signing this object:
| 1-tr-18su-ka-8dow-56-oo9-13swx-r-k-ife-0nj-rnq-ihb-dd-p-1-0-z-a.info. | |
| 292fu2013-1-2-3-htt-4t3l60-zqn673-w9gp7kip0422wemrzsftm-htm-com.info. | |
| aljumahiriyahalarabiyahallibiyahashshabiyahalishtirakiyahaluzma.info. | |
| anderson-piedmont-spartanburg-greenville-easley-spine-pain-care.info. | |
| associationfrancaisedesdirecteursdelaphotographiedelatelevision.info. | |
| audio-player-zawqkerrhfoepdnmvbdkslahgjvklahjkfqqqojcgrtsksmcls.info. | |
| ausencosandwellascentisaaxwaynegossruddswanheinercrimemellifont.info. | |
| australianpublicsectoranti-corruptionconference2009fraudrortsin.info. | |
| bewarecrimestoppersassistcorruptpolicepoliticcrimecriminalfraud.info. | |
| camp-the-lycian-way-camps-the-lycian-way-camping-lycian-way-map.info. |
| #!/bin/bash | |
| # vj_rsync.sh | |
| echo "" | |
| echo "this script does some rsync thing" | |
| echo "" | |
| read -p "press [enter] to start" | |
| echo "" | |
| # hard code the pw between the quotes or fix the script to read input from the command line |
| =TRIM(CLEAN(SUBSTITUTE(A1,CHAR(1),""))) |
| grep -E -o '(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)' file.txt |
| find / -iname "*.ext" -exec mv {} /root/file_dir \; |
| ### Keybase proof | |
| I hereby claim: | |
| * I am jackiesingh on github. | |
| * I am jacquelinestokes (https://keybase.io/jacquelinestokes) on keybase. | |
| * I have a public key whose fingerprint is 9F86 7287 B1B7 900C 795C 1D15 9719 9ABB 544E D97E | |
| To claim this, I am signing this object: |
| echo "Host,StarupProcess" > StartupProcesses.csv | |
| Get-ADComputer -filter {OperatingSystem -like "*Windows*"} | foreach { $_.Name} > computers.txt | |
| foreach ($x in (get-content computers.txt) ) | |
| { | |
| if (Test-Connection -Count 1 -computername $x) { | |
| $Object = Get-WmiObject -Class Win32_StartupCommand -computername $x | |
| foreach ($y in $Object.Command) { | |
| echo "$x,$y" >> StartupProcesses.csv | |
| } | |
| } else { |