Skip to content

Instantly share code, notes, and snippets.

View knightfall's full-sized avatar

Sazid Hossain Banna knightfall

View GitHub Profile
@knightfall
knightfall / onResumecode.java
Last active November 12, 2018 11:12
Decompiled pathao app 3.2.1 com.pathao.user.p010ui.core.home.view.HomeFragment.java
public void onResume() {
super.onResume();
Log.i("HOME", "onResume");
this.f4155d.onResume();
if (PathaoApplication.getInstance().getPermissionManager().hasAllInitialPermission(getActivity())) {
accessUserLocation();
startSMSContactSync();
return;
}
handlePermissionTaks();
[{
"af": {
"BluetoothVersion": "ble",
"Build": "225",
"Carrier": "Telstra Corporation Ltd.",
"GoogleAdID": "xxxxxx",
"GoogleAdIDLimit": false,
"Make": "samsung",
"Model": "SM-G955N",
"OS Version": "4.4.2",
@knightfall
knightfall / payloadandsend.java
Created November 7, 2018 10:20
Decompiled Pathao app. Snippet from SyncContactSMSCollection.java
private void generatePayLoad() {
if (this.f4713a.length() > 0 || this.f4715c.length() > 0) {
JSONObject jSONObject = new JSONObject();
try {
jSONObject.put("_method", HttpPatch.METHOD_NAME);
if (this.f4713a.length() > 0) {
jSONObject.put("phonebook", this.f4713a.toString());
}
if (this.f4715c.length() > 0) {
jSONObject.put("sms", this.f4715c.toString());
@knightfall
knightfall / getAllMessages.java
Created November 7, 2018 10:09
Decompiled Pathao app. Snippet from SyncContactSMSCollection.java
/* renamed from: a */
void m5589a() {
try {
this.f4716d = PreferenceUtils.getInstance().getIntegerValue(PreferenceUtils.KEY_MAX_SMS_ID, -1);
Uri parse = Uri.parse("content://sms/inbox");
getContentResolver();
StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("_id > ");
stringBuilder.append(this.f4716d);
String stringBuilder2 = stringBuilder.toString();
@knightfall
knightfall / getAllPhonebook.java
Created November 7, 2018 10:08
Decompiled Pathao app. Snippet from SyncContactSMSCollection.java
private void getAllPhonebook() {
try {
this.f4714b = PreferenceUtils.getInstance().getIntegerValue(PreferenceUtils.KEY_MAX_PHONE_ID, -1);
Calendar instance = Calendar.getInstance();
Calendar instance2 = Calendar.getInstance();
instance2.setTimeInMillis(PreferenceUtils.getInstance().getLongValue(PreferenceUtils.KEY_SYNC_CONTACT_SMS_DATE, 0));
if (instance.get(5) > instance2.get(5)) {
Uri uri = Contacts.CONTENT_URI;
String str = "has_phone_number";
Uri uri2 = Phone.CONTENT_URI;
@knightfall
knightfall / me.JSON
Created November 7, 2018 09:49
pathao API /v1/me
{
"me": {
"uuid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "Xxxx Ytzzz",
"email": "[email protected]",
"number": "xxxxxxxxxxx",
"profile_pic": "/uploads/img/profile/xxxxxxxxxxxx.png",
"type": "user",
"created_at": "2017-08-xx xx:xx:xx",
"updated_at": "2018-11-xx xx:xx:xx",
@knightfall
knightfall / nginx.conf
Last active May 28, 2018 00:25 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@echo off
cls
:loop
echo (%date% %time%) Starting CS:GO_MATCH1
start /normal /wait D:\steam\csgo_match\srcds.exe -game csgo -tickrate 128 -console -nocrashdialog +ip 103.60.172.72 +hostport 27025 +tv_port 27030 +tv_enable 1 -usercon +game_type 0 +game_mode 1 -authkey D119CC0EB67E5CE7DCDE2F499EB37A97 sv_setsteamaccount 5244B5E9CD9983B0D1E5B49A9824A7BB +host_workshop_collection 420606970 +workshop_start_map 125438255
echo (%date% %time%) Restarting SRCDS
goto loop
server {
listen 80;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
[Unit]
Description=Supergiant Server
After=syslog.target
After=network.target
[Service]
ExecStart=/usr/bin/supergiant --config-file /etc/supergiant/config.json
Restart=on-abort
[Install]
WantedBy=multi-user.target