Create a openVPN server on Google Cloud Platform to connect to your Google Cloud network using openVPN and/or to route your internet traffic through the VPN (Road Warrior Scenario)
- Create new instance in default network
- Chosse Ubuntu 16.04 LTS
| <html> | |
| <head> | |
| <title>WebSocket demo</title> | |
| </head> | |
| <body> | |
| <div> | |
| <form> | |
| <label for="numberfield">Number</label> | |
| <input type="text" id="numberfield" placeholder="12"/><br /> |
| package main | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "crypto/rand" | |
| "crypto/sha256" | |
| "encoding/base64" | |
| "fmt" | |
| "io" |
Create a openVPN server on Google Cloud Platform to connect to your Google Cloud network using openVPN and/or to route your internet traffic through the VPN (Road Warrior Scenario)
| # run this once, then reload, and then skip this | |
| !apt install rustc | |
| !gdown --id 1PULtTc-2e9z4bswh_SQqL5oy_4JpfV7c | |
| !chmod +x evcxr_jupyter | |
| !./evcxr_jupyter --install | |
| // install dependency | |
| :dep cmd_lib | |
| use cmd_lib::run_cmd as sh; |
| adb help // List all comands | |
| == Adb Server | |
| adb kill-server | |
| adb start-server | |
| == Adb Reboot | |
| adb reboot | |
| adb reboot recovery | |
| adb reboot-bootloader |
adb is the Android CLI tool with which you can interact with your android device, from your PC
You must enable developer mode (tap 7 times on the build version in parameters) and install adb on your PC.
To get the list of your installed applications:
| #include <iostream> | |
| #include <boost/array.hpp> | |
| #include <boost/asio.hpp> | |
| using boost::asio::ip::udp; | |
| class UDPClient | |
| { | |
| public: | |
| UDPClient( |
Inspired by this
Edit 22/8/2021: I have updated MEmu and it seems like it reinstalls the apps and re-enables the services. Repeat steps 5, 7, 8, and 9 if you update MEmu.
In my experience, Nox can be quite slow and choppy, and looks like I'm not the only person with this problem. A lot of people say that MEmu performs better than Nox, and I could agree with that. I have no chopping issues with it so far. But like Nox, there are kinda shady stuff going on. No one has made a guide on this, so I did it.
| /* Utilities */ | |
| var RANDOM = function() {}; | |
| function _randomInt(min, max) { | |
| return Math.floor(Math.random() * (max - min + 1)) + min; | |
| } | |
| function _randomHex(len) { | |
| var hex = '0123456789abcdef'; |
| // ==UserScript== | |
| // @name ZaloDecryptor | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0.0 | |
| // @description Decrypt and log Zalo's HTTP requests and WebSocket traffics | |
| // @author ElectroHeavenVN | |
| // @match https://chat.zalo.me/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=zalo.me | |
| // @grant none | |
| // @run-at document-start |