| Symbol | ALT Code | ALT X Code | Symbol Name | HTML Entity DEC | HTML Entity HEX | HTML Entity Named | Unicode Code Point |
|---|---|---|---|---|---|---|---|
| ☐ | ALT 9744 | 2610 ALT X | Ballot box, check box, tick box | ☐ | ☐ | U+2610 | |
| ☑ | ALT 9745 | 2611 ALT X | Ballot box with check | ☑ | ☑ | U+2611 | |
| ☒ | ALT 9746 | 2612 ALT X | Ballot box with X | ☒ | ☒ | U+2612 | |
| ✅ | ALT 9989 | 2705 ALT X | White heavy check mark | ✅ | ✅ | U+2705 | |
| ✓ | ALT 10003 | 2713 ALT X | Check mark | ✓ | ✓ | ✓ | U+2713 |
| ✔ | ALT 10004 | 2714 ALT X | Heavy check mark | ✔ | ✔ | U+2714 |
| ============================================================================ | |
| #Wireshark installation directory: windows | |
| C:\Program Files (x86)\Wireshark>tshark.exe | |
| ============================================================================ | |
| tshark -D #list of available interfaces | |
| ============================================================================ | |
| capture | |
| ============================================================================ | |
| tshark -i 2 #start capturing traffic on interface n°2 | |
| tshark -i 2 -a duration:10 #capture for 10 seconds, then stop |
| 1. Download latest apktool version. | |
| 2. Download the batch file and aapt.exe. | |
| 3. Create a folder anywhere in the PC and put all the apktool.jar, aapt.exe and the batch script in that folder. | |
| 4. Open command prompt. | |
| 5. Navigate to the folder where you placed apktool.jar, batch script and the aapt.exe. | |
| 6. Now, you need to install the file using the " IF " command. | |
| 7. Type the following command. | |
| apktool if name-of-the-app.apk |
Most of the time, applications won't pin the certificate. Running mitmproxy and passing all Android traffic through it is as simple as adb connect <IP> && adb shell settings put global http_proxy <mitmproxy host>:<mitmproxy port> (or use Android's UI)
Some applications, however, pin the certificate and will refuse to do any network calls if using mitmproxy.
Luckily, Frida is here!
This assumes Android x86 is running in a VM, that you are a developer in Android (tap the build version enough times), adb debugging is enabled, and that android tools are installed on the host.
- start mitmproxy on host
- visit mitm.it on the target (after setting the proxy) and install the spoofed cert
| const puppeteer = require('puppeteer-extra'); | |
| const StealthPlugin = require('puppeteer-extra-plugin-stealth'); | |
| const AdblockerPlugin = require('puppeteer-extra-plugin-adblocker'); | |
| (async() => { | |
| puppeteer.use(AdblockerPlugin({ blockTrackers: true })); | |
| puppeteer.use(StealthPlugin()); | |
| puppeteer.use(require('puppeteer-extra-plugin-anonymize-ua')()) | |
| puppeteer.use(require('puppeteer-extra-plugin-user-preferences')({userPrefs: { |
It can be difficult to trace network traffic from a Node.js application. Typically, folks will just instrument some logging to check that everything is working as it is supposed to. Unfortunately, sometimes there are too many abstractions or possible race conditions to accurately get a good trace. To get the most objective possible trace of network traffic Wireshark can be used.
Wireshark is a network protocol analyzer that makes it extremely simple to capture and trace network activity from any source on your computer. It also has
| public class PlayPauseView extends AppCompatImageView { | |
| public static final int STATE_PLAY = 1; | |
| public static final int STATE_PAUSE = 2; | |
| private AnimatedVectorDrawableCompat mPlayToPauseAnim, mPauseToPlay; | |
| private Animation mFadeOutAnim, mFadeInAnim; | |
| public PlayPauseView(Context context) { | |
| super(context); | |
| Init(context); |
| var express = require('express') | |
| var session = require('express-session') | |
| var app = express() | |
| var r = require('request') | |
| // By default cookies are disabled, switch it on | |
| var request = r.defaults( { jar:true } ) | |
| app.use(session({ secret: 'keyboard cat',saveUninitialized : false, resave : false, cookie: { maxAge: 60000 }})) |
