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
| ZigzagDownLoader file log: | |
| mié 15 jul 2020 13:16:56 -05 | |
| k --> It is not a valid URL for ZigzagDownLoader | |
| mié 15 jul 2020 13:17:01 -05 | |
| kill --> It is not a valid URL for ZigzagDownLoader | |
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
| HKEY_LOCAL_MACHINE -> SOFTWARE -> POLICIES -> MICROSOFT -> Windows Defender -> DisableAntiSpyware = 0 | |
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
| class WaveformData { | |
| // [...] | |
| List<int> data; | |
| List<double> _scaledData; | |
| // [...] | |
| List<double> scaledData() { | |
| if (!_isDataScaled()) { | |
| _scaleData(); | |
| } |
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
| function detectVPN() { | |
| var browserTimezone = Intl.DateTimeFormat().resolvedOptions().timeZone | |
| return fetch(`https://ipapi.co/json`) | |
| .then(function(response) { return response.json() }) | |
| .then(function (data) { | |
| var ipTimezone = data.timezone | |
| console.log(`browser timezone: ${browserTimezone}`, `ip timezone: ${ipTimezone}`) | |
| return { | |
| browser: browserTimezone, |
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
| // declaracion | |
| function wait(ms) { | |
| return new Promise(resolve => setTimeout(resolve, ms)) | |
| } | |
| // uso | |
| await wait(200); |
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
| # what we want: | |
| # client -> OpenVPN -> Tor -> Internet | |
| # Install & configure OpenVPN | |
| # https://www.digitalocean.com/community/tutorials/how-to-set-up-an-openvpn-server-on-ubuntu-16-04 | |
| # assumed OpenVPN configuration | |
| # 10.8.0.1/24-Subnet | |
| # tun0-Interface |
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
| Verano.2019@ |
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
| for(i=0;A=$$("*")[i++];)A.style.outline="solid hsl("+parseInt(A.tagName,36)+",99%,50%)1px" |
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
| curl -s https://api.github.com/orgs/microlinkhq/repos\?per_page\=200 | jq '.[].ssh_url' | xargs -n 1 git clone |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css"> | |
| <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/scroller/2.0.0/css/scroller.dataTables.min.css"> | |
| <script type="text/javascript" src="https://code.jquery.com/jquery-3.3.1.js"></script> | |
| <script type="text/javascript" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script> | |
| <script type="text/javascript" src="https://cdn.datatables.net/scroller/2.0.0/js/dataTables.scroller.min.js"></script> | |
| </head> |