Archive for May, 2009


AutoScan Network

AutoScan Network

Network Monitoring and Management Tool

http://www.4shared.com/file/108959504/63306df4/autoscanpdftar.html


Vodafone mobie usb

لسلام عليكم ورحمه الله
هنتكلم انهاردة عن الاتصال من خلال Vodafone mobie usb وتعريفه على فيدورا لان واجهتنى المشكلة دى من ومين على لاب توب من الوزارة ومعاه usb فودافون طيب الصبح لقيت حل ليها لانى بحث والحمد لله ربنا وفقنى

اولا تعالو نحمل الحزم ديه على شان نبتدى باذن الله من خلال سطر الاوامر اسحب الحزم

wget https://forge.betavine.net/frs/download.php/439/usb_modeswitch-0.9.6-1.fc10.i386.rpm https://forge.betavine.net/frs/download.php/460/ozerocdoff-0.4-1.fc10.i386.rpm https://forge.betavine.net/frs/download.php/462/vodafone-mobile-connect-2.00.00-1.noarch.rpm

طيب بعد تحميل الباكيدج ننفذ الامر التالى لتثبت باكيدجات على شان نتشغل تمام لان بدون الباكيدجات ديه مش هتشتغل معاك

yum install pyserial python-twisted pytz usb_modeswitch

هيظهر مع الثبت شوية dependencies وما فيش مشكلة هنبثبتها
بعد ما تخلص تثبت الحزم السابقة هنثبت الباكيدجات اللى حملنها فى الخطوة الاولى

وهى rpm
طيب نفذ الامر التالى

rpm -ivh *.rpm

بعد التثبت اكتب فى الشل

[root@SecL!nUx drdermann]# vodafone-mobile-connect-card-driver-for-linux

او هتلاقيه فى المسار التالى
Applications >>> internet>>>Mobile connect
وكدا الحمد لله انتهينا

My Laptop’s Linux

27-05-09_192527-05-09_192727-05-09_1928

remote desktop rdp

multiple IP addresses on eth [x]

السلام عليكم ورحمه الله
درس اليوم هو ازاى يكون عندك 2 او 3 او او اكتر من ايبى على نفس الكارت دليك
الموضوع بما فيه هو عن طريق ال allies
يعنى مثلا بنعمل للكارت كارت وهمى اخر //
طيب دلوقتى ندخل على المسار التالى
/etc/sysconfig/network-scripts/
وننسخ الملف التالى
ifcfg-eth0
cp ifcfg-eth0 ifcfg-eth0:1
لو عايز اكتر من اى بى لنفس الكارت هيكون بالشكل التالى
cp ifcfg-eth0 ifcfg-eth0:2
cp ifcfg-eth0 ifcfg-eth0:3

لحد كدا تمام
طيب دلوقتى نفتح الملف الاول
vi ifcfg-eth0:1
ونغير فى الاى بى والكارت
لاحظ الملف الاصلى للكارت eth0
# Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+
DEVICE=eth0
HWADDR=00:1b:24:2b:b4:dc
ONBOOT=yes
BOOTPROTO=none
NETMASK=255.255.255.0
IPADDR=192.168.1.100
USERCTL=no
PEERDNS=yes
IPV6INIT=no
NM_CONTROLLED=yes
GATEWAY=192.168.1.254
TYPE=Ethernet

غير فقط الموجود باللون الاحمر

ليكون الملف

ifcfg-eth0:1

# Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+
DEVICE=eth0:1
HWADDR=00:1b:24:2b:b4:dc
ONBOOT=yes
BOOTPROTO=none
NETMASK=255.255.255.0
IPADDR=192.168.1.101
USERCTL=no
PEERDNS=yes
IPV6INIT=no
NM_CONTROLLED=yes
GATEWAY=192.168.1.254
TYPE=Ethernet

MySQL login scanner

#!/usr/bin/env python
# No_Password MySQL login scanner.

import MySQLdb, random, sys

def randip():

A = random.randrange(255) + 1
B = random.randrange(255) + 1
C = random.randrange(255) + 1
D = random.randrange(255) + 1
ip = "%d.%d.%d.%d" % (A,B,C,D)
return ip

def title():
print "\n MySQL_default "
print "-------------------------------------------------"

#Add or subract users here.
users = ["root","admin","administrator"]

if len(sys.argv) <= 1:
title()
print "\nUsage: mysql_default.py \n"
sys.exit(0)

title()
print "\n[+] Scanning:",sys.argv[1]
for x in xrange(int(sys.argv[1])):
ip = randip()
try:
for u in users:
#print "[+] Connecting:",ip," User:",u
db = MySQLdb.connect(user = u, passwd = "", host = ip, connect_timeout=15)
print "[+] Connected"
print "[+] IP:",ip," User:",u
print db.get_server_info()
print "[+] Connection successful."
db.close()
except(MySQLdb.OperationalError), msg:
#print "[-] Connections Closed"
pass

PortListScan v1.0

#!/usr/bin/python
#Takes a list of sites/ips and checks if a port is open.
#If the port is open, saves the site/ip to a file.

import socket, sys

def title():
print "\n\t PortListScan v1.0"
print "\t------------------------------------------------"

def write(host):
file = open(sys.argv[3], "a")
file.writelines(host+" : "+port+"\n")
file.close()

def scan(host):
if host[-1] == "\n":
host = host[:-1]
print "[-] Target:",host
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(4)
s.connect((socket.gethostbyname(host), int(port)))
print "\n[+] OPEN:",host, port
print "[+] Response:",s.recvfrom(1024)[0]
write(host)
s.close()
except:
pass

if len(sys.argv) != 4:
title()
print "Usage: ./openports.py <list of sites/ips> <port> <saved file>"
sys.exit(1)

port = sys.argv[2]

try:
sites = open(sys.argv[1], "r").readlines()
except(IOError):
print "\nError: Check your site list path\n"
sys.exit(1)

title()
print "\n[+] Sites Loaded:",len(sites)
print "[+] Scanning...\n"
for site in sites:
scan(site)

Free RHCT / RHCE

وجد من فترة هذه المواقع التى تقدم خدمات عن rhce

ولعل تكون مفيده ليكم

RHCE general information
http://www.redhat.com/training/rhce/courses/ Overview of the RHCE certification track
http://www.redhat.com/training/rhce/rhce_faq.html FAQ’s on the RHCE

Free RHCE Study Guides
http://www.europe.redhat.com/documentation/ Official RHCE documentation
http://www.redhat.com/docs/manuals/linux/ Red Hat’s manuals
http://www.redhat.com/training/rhce/examprep.html Red Hat’s RHCE prep guide
http://endor.clublinux.org/RHCE.html Steve’s RHCE study guide
http://www.learnthat.com/courses/index.shtml A bunch of animated Red Hat Linux tutorials
http://cramsession.com/certifications/red-hat/rhce.asp Free study guide for the RH302 exam – need to register first
http://www.examnotes.net/RHCE-certification.html Free study guide – need to register first
http://www.rhce2b.com/ Lots of RHCE test prep material
http://www.yolinux.com/TUTORIALS/LinuxTutorialRedHatInstallation.html Basic installation and admin tutorial
http://www.softlookup.com/tutorial/redhat/index.asp Red Hat tutorials

Free RHCE Practice Tests

http://www.redhat.com/apps/training/assess/ Red Hat’s skills assessment questionnaires
http://www.rhce2b.com/cgi-bin/test/test.pl 56 RHCE practice questions – good site
http://www.mcmcse.com/forums/exams/ 46 practice questions for the RH302 exam – after entering the site, click on the overhead menu bar
http://www.cert21.com/82907158.htm – Free questions from a large pool of questions
http://www.examnotes.net/RHCE-cert.html Free RHCE practice exam – need to register first
http://www.goexam.com/practice_exams/RedHat_exams.shtml A couple of RHCE practice exams
http://www.examcram2.com/practice_exams/exam.asp?p=2980 34 Free RHCE questions
http://www.download.com/Whizlabs-Red-Hat-Linux=lst-0-13 RHCE practice simulation
http://www.itcertkeys.com/shop/demos.php 30 RH302 questions to download in pdf format
http://www.xamsrus.com Free RHCE practice questions

RHCE Discussion forums

http://www.examnotes.net/forum44.html

http://www.tek-tips.com/threadminder.cfm?pid=54

http://www.mcmcse.com/forums/viewforum.php?f=21

http://www.linuxquestions.org/questions/forumdisplay.php?s=&forumid=46

comps.os.linux.announce
comps.os.linux.advocacy
comp.os.linux.redhat
redhat.general

السلام عليكم ورحمه الله

كانت تقابل الكثير اننا ما نقدر نشوف محتويات اسطوانة ما  وتكون للحرق فلو حبيت قبل ما احرقها اشوف محتواها فيوجد طريقتين الاول من خلال سطر الاوامر والثانية من خلال واجهة رسومية

فميزه برنامج

AcetoneISO2

انه يقوم بعمل mount لملفات iso ,mdf,nrg

طبعا كلها ملفات لازم تتحرق على اسطوانة على شان تعمل

لتثبت البرنامج

yum install AcetoneISO2

بعد الانتهاء سوف تجد البرنامج فى

Application >> sound&Video>> AcetoneISO2

شاهد الصورة التاليه

screenshot-acetoneiso

screenshot-acetoneiso-1

screenshot-acetoneiso-2

Convert / Extract / Browse to ISO : *.bin *.mdf *.nrg *.img *.daa *.cdi *.xbx *.b5i *.bwi *.pdi
Play a DVD Movie ISO with most used media players
Generate an ISO from a Folder or CD/DVD
Generate MD5 file of an image
Encrypt an image
Split image in X megabyte
Compress with High Ratio an image

Follow

Get every new post delivered to your Inbox.