Tools to gather information about installed packages on the stock ROM of my Samsung Galaxy S10e.
My Samsung Galaxy S10e came refurbished (by Cadaoz (France)).
About phone:
| #!/usr/bin/env python3 | |
| print("Colors: \\033[XXm") | |
| colors_names = ( | |
| "black", | |
| "red", | |
| "green", | |
| "yellow", | |
| "blue", |
| #!/bin/sh | |
| separator=$(head -c 60 /dev/urandom | base64 -w 0) | |
| echo "$# arguments separated with $separator" | |
| while [ $# != 0 ] ; do | |
| printf '%s\n%s\n' "$1" "$separator" | |
| shift | |
| done |
| #!/usr/bin/env python3 | |
| # This versionning style is a date based versionning in X.Y.Z.W format. | |
| # It is compatible with Microsoft's System.Version and the .NET Assembly | |
| # versionning model. | |
| # | |
| # X is the the year readable in decimal, with the MSB bit of the 16bits value | |
| # set to 1. | |
| # | |
| # Y is comprised of two parts: | |
| # * A 1-based integer (range 1-99), incremented for each "unique" "functional |
Trouve-la ici: http://hkwjwviivu.duckdns.org/ (Pro-tip, un User-agent qui contient la chaine Android te permettra d'accéder à un lien pour la télécharger). Tu peux aussi accéder à n'importe quel lien qui ressemble à http://hkwjwviivu.duckdns.org/xowgimayme.apk ou http://hkwjwviivu.duckdns.org/kloxaxpdzp.apk (L'APK semble générée à la volée).
| def hello(who): | |
| print("Hello %s" % who) | |
| if __name__ == '__main__': | |
| hello( | |
| "world") | |
| hello("World") | |
| hello( | |
| "world!" |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import urllib.request | |
| gh_url = 'https://api.github.com' | |
| req = urllib.request.Request(gh_url) | |
| password_manager = urllib.request.HTTPPasswordMgrWithDefaultRealm() |