2025年01月02日

I made a new repository for storing archives. Though I failed to make it work for private repo so I just made it public…​

Finished Papers

Why do Nigerian Scammers Say They are from Nigeria?

A binary classification problem where the attacker’s goal is to identify the true positives from the false positives (scammed vs cannot be scammed). However, it is very difficult to build a classifier since that requires data from actual victims. "Nigerian Scam" is used because this filters potential victims from the ones who doesn’t fall for scams. Victims who are oblivious to scams will be marked as viable targets for the scammers.

Nmap

scan for active hosts
nmap -n -sn -PR -PS -PA -PU -T5 192.168.240.1/24

adb

Pulling a package

List packages
adb shell pm list packages
Get full path of the package
adb shell pm path com.example.app
Pull the app
adb pull /data/app/com.example.someapp-2.apk path/to/desired/destination