Skip to content

Instantly share code, notes, and snippets.

View mhanoglu's full-sized avatar
🏠
Working from home

Mehmet Hanoğlu mhanoglu

🏠
Working from home
View GitHub Profile
@mhanoglu
mhanoglu / apk_decode.sh
Created June 1, 2018 22:47
APK dosyalarını dex2jar ve cfr kullanarak decode etme. Kullanımı: ./apk_decode.sh dosya.apk
#!/bin/bash
apk_file=$1
while [ "$apk_file" == "" ]
do
echo -e $"APK dosyası belirtilmedi. Kullanım: ./decoder.sh dosya.apk. Şimdi aynı dizinde bulunan apk dosyasının adını yazınız"
read apk_file
done
@mhanoglu
mhanoglu / php-decoder.py
Last active August 30, 2021 22:43
Decoder for obfuscated php file. Usage: python php-decoder.py file_path
#-*- coding: utf-8 -*-
import re, sys
def substr(txt, start, offset) :
return txt[start:start+offset]
def strtr(txt, src, tgt) :
fr = '',
i = 0,
j = 0,
@mhanoglu
mhanoglu / Image_Crop.py
Created May 14, 2016 11:52
imagecrop for symbianOS 2nd
# -*- coding: utf8 -*-
''' Project Name : Image_Crop v1.0
Copyright : www.python-s60.com
Author: MaRZoCHi (Mehmet Hanoğlu)
License : GNU Lisans
Date : 27.04.2011
Description : Açık Kaynaklı Proje.İsteyenler Geliştirebilir.
'''
from appuifw import app,Canvas
@mhanoglu
mhanoglu / aSMSEngine.py
Created January 7, 2016 12:11
Kişi adını içeren özel mesaj oluşturma ve gönderme (Android)
# encoding: utf-8
''' Project Name : SMS Engine for Android
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu)
Copyright : www.mehmethanoglu.com.tr
License : GNU License
Date : 03.11.2012 15:10
Update :
'''
@mhanoglu
mhanoglu / aSQL.py
Last active January 7, 2016 12:12
SQLite3 handler for Android (Python)
# -*- coding: utf8 -*-
''' Project Name : Android SQL Database with SQLite3
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu)
Copyright : www.mehmethanoglu.com.tr
License : GNU License
Date : 08.11.2012 00:54
Update : 12.11.2012
'''
__doc__ = 'Android SQL Database with SQLite3'
__author__ = 'by MeHMeT a.k.a MaRZoCHi'
@mhanoglu
mhanoglu / indicator.py
Created January 1, 2016 19:42
Ubuntu, elementaryOS için indikatör örneği
# -*- coding: utf-8 -*-
import os
import time
import gobject
import glib
import gtk
import appindicator
def _( x ): return x.decode('u8')
@mhanoglu
mhanoglu / smessages.py
Last active January 7, 2016 12:12
Kişi adını içeren özel mesaj oluşturma ve gönderme
# -*- coding: utf8 -*-
''' Project Name : SpecialMessages : 15:05 21.11.2011
Author : by MeHMeT a.k.a MaRZoCHi (Mehmet Hanoğlu)
Copyright : www.mehmethanoglu.com.tr
License : GNU License
Update : 25.02.2012(0.4),06.01.2012(0.3),31.12.2011(0.2),01.01.2012
'''
__doc__ = 'SpecialMessages : 15:05 21.11.2011'
__author__ = 'by MeHMeT a.k.a MaRZoCHi'
__name__ = 'smessages'