shell bypass 403

UnknownSec Shell

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

name : SocketServer.pyo
�
zfc@sOdZdZddlZddlZddlZddlZddlZyddlZWnek
rwddl	ZnXdddddd	d
ddd
dgZ
eed�r�e
jddddg�nd�Z
dd&d��YZdefd��YZdefd��YZdd'd��YZd
d(d��YZdeefd��YZdeefd��YZdeefd��YZd	eefd��YZeed�rdefd��YZdefd ��YZdeefd!��YZdeefd"��YZnd
d)d#��YZdefd$��YZdefd%��YZdS(*s�Generic socket server classes.

This module tries to capture the various aspects of defining a server:

For socket-based servers:

- address family:
        - AF_INET{,6}: IP (Internet Protocol) sockets (default)
        - AF_UNIX: Unix domain sockets
        - others, e.g. AF_DECNET are conceivable (see <socket.h>
- socket type:
        - SOCK_STREAM (reliable stream, e.g. TCP)
        - SOCK_DGRAM (datagrams, e.g. UDP)

For request-based servers (including socket-based):

- client address verification before further looking at the request
        (This is actually a hook for any processing that needs to look
         at the request before anything else, e.g. logging)
- how to handle multiple requests:
        - synchronous (one request is handled at a time)
        - forking (each request is handled by a new process)
        - threading (each request is handled by a new thread)

The classes in this module favor the server type that is simplest to
write: a synchronous TCP/IP server.  This is bad class design, but
save some typing.  (There's also the issue that a deep class hierarchy
slows down method lookups.)

There are five classes in an inheritance diagram, four of which represent
synchronous servers of four types:

        +------------+
        | BaseServer |
        +------------+
              |
              v
        +-----------+        +------------------+
        | TCPServer |------->| UnixStreamServer |
        +-----------+        +------------------+
              |
              v
        +-----------+        +--------------------+
        | UDPServer |------->| UnixDatagramServer |
        +-----------+        +--------------------+

Note that UnixDatagramServer derives from UDPServer, not from
UnixStreamServer -- the only difference between an IP and a Unix
stream server is the address family, which is simply repeated in both
unix server classes.

Forking and threading versions of each type of server can be created
using the ForkingMixIn and ThreadingMixIn mix-in classes.  For
instance, a threading UDP server class is created as follows:

        class ThreadingUDPServer(ThreadingMixIn, UDPServer): pass

The Mix-in class must come first, since it overrides a method defined
in UDPServer! Setting the various member variables also changes
the behavior of the underlying server mechanism.

To implement a service, you must derive a class from
BaseRequestHandler and redefine its handle() method.  You can then run
various versions of the service by combining one of the server classes
with your request handler class.

The request handler class must be different for datagram or stream
services.  This can be hidden by using the request handler
subclasses StreamRequestHandler or DatagramRequestHandler.

Of course, you still have to use your head!

For instance, it makes no sense to use a forking server if the service
contains state in memory that can be modified by requests (since the
modifications in the child process would never reach the initial state
kept in the parent process and passed to each child).  In this case,
you can use a threading server, but you will probably have to use
locks to avoid two requests that come in nearly simultaneous to apply
conflicting changes to the server state.

On the other hand, if you are building e.g. an HTTP server, where all
data is stored externally (e.g. in the file system), a synchronous
class will essentially render the service "deaf" while one request is
being handled -- which may be for a very long time if a client is slow
to read all the data it has requested.  Here a threading or forking
server is appropriate.

In some cases, it may be appropriate to process part of a request
synchronously, but to finish processing in a forked child depending on
the request data.  This can be implemented by using a synchronous
server and doing an explicit fork in the request handler class
handle() method.

Another approach to handling multiple simultaneous requests in an
environment that supports neither threads nor fork (or where these are
too expensive or inappropriate for the service) is to maintain an
explicit table of partially finished requests and to use select() to
decide which request to work on next (or whether to handle a new
incoming request).  This is particularly important for stream services
where each client can potentially be connected for a long time (if
threads or subprocesses cannot be used).

Future work:
- Standard classes for Sun RPC (which uses either UDP or TCP)
- Standard mix-in classes to implement various authentication
  and encryption schemes
- Standard framework for select-based multiplexing

XXX Open problems:
- What to do with out-of-band data?

BaseServer:
- split generic "request" functionality out into BaseServer class.
  Copyright (C) 2000  Luke Kenneth Casson Leighton <lkcl@samba.org>

  example: read entries from a SQL database (requires overriding
  get_request() to return a table entry from the database).
  entry is processed by a RequestHandlerClass.

s0.4i����Nt	TCPServert	UDPServertForkingUDPServertForkingTCPServertThreadingUDPServertThreadingTCPServertBaseRequestHandlertStreamRequestHandlertDatagramRequestHandlertThreadingMixIntForkingMixIntAF_UNIXtUnixStreamServertUnixDatagramServertThreadingUnixStreamServertThreadingUnixDatagramServercGsZxStrUy||�SWqttjfk
rQ}|jdtjkrR�qRqXqWdS(s*restart a system call interrupted by EINTRiN(tTruetOSErrortselectterrortargsterrnotEINTR(tfuncRte((s$/usr/lib64/python2.7/SocketServer.pyt_eintr_retry�s	t
BaseServercBs�eZdZdZd�Zd�Zdd�Zd�Zd�Z	d�Z
d�Zd	�Zd
�Z
d�Zd�Zd
�Zd�Zd�ZRS(s�Base class for server classes.

    Methods for the caller:

    - __init__(server_address, RequestHandlerClass)
    - serve_forever(poll_interval=0.5)
    - shutdown()
    - handle_request()  # if you do not use serve_forever()
    - fileno() -> int   # for select()

    Methods that may be overridden:

    - server_bind()
    - server_activate()
    - get_request() -> request, client_address
    - handle_timeout()
    - verify_request(request, client_address)
    - server_close()
    - process_request(request, client_address)
    - shutdown_request(request)
    - close_request(request)
    - handle_error()

    Methods for derived classes:

    - finish_request(request, client_address)

    Class variables that may be overridden by derived classes or
    instances:

    - timeout
    - address_family
    - socket_type
    - allow_reuse_address

    Instance variables:

    - RequestHandlerClass
    - socket

    cCs.||_||_tj�|_t|_dS(s/Constructor.  May be extended, do not override.N(tserver_addresstRequestHandlerClasst	threadingtEventt_BaseServer__is_shut_downtFalset_BaseServer__shutdown_request(tselfRR((s$/usr/lib64/python2.7/SocketServer.pyt__init__�s		cCsdS(sSCalled by constructor to activate the server.

        May be overridden.

        N((R"((s$/usr/lib64/python2.7/SocketServer.pytserver_activate�sg�?cCs�|jj�zaxZ|jslttj|ggg|�\}}}|jrPPn||kr|j�qqWWdt|_|jj�XdS(s�Handle one request at a time until shutdown.

        Polls for shutdown every poll_interval seconds. Ignores
        self.timeout. If you need to do periodic tasks, do them in
        another thread.
        N(RtclearR!RRt_handle_request_noblockR tset(R"t
poll_intervaltrtwR((s$/usr/lib64/python2.7/SocketServer.pyt
serve_forever�s
		cCst|_|jj�dS(s�Stops the serve_forever loop.

        Blocks until the loop has finished. This must be called while
        serve_forever() is running in another thread, or it will
        deadlock.
        N(RR!Rtwait(R"((s$/usr/lib64/python2.7/SocketServer.pytshutdown�s	cCs�|jj�}|dkr'|j}n$|jdk	rKt||j�}nttj|ggg|�}|ds�|j�dS|j�dS(sOHandle one request, possibly blocking.

        Respects self.timeout.
        iN(	tsockett
gettimeouttNonettimeouttminRRthandle_timeoutR&(R"R1tfd_sets((s$/usr/lib64/python2.7/SocketServer.pythandle_requests

cCs�y|j�\}}Wntjk
r-dSX|j||�r~y|j||�Wq�|j||�|j|�q�Xn
|j|�dS(s�Handle one request, without blocking.

        I assume that select.select has returned that the socket is
        readable before this function was called, so there should be
        no risk of blocking in get_request().
        N(tget_requestR.Rtverify_requesttprocess_requestthandle_errortshutdown_request(R"trequesttclient_address((s$/usr/lib64/python2.7/SocketServer.pyR&scCsdS(scCalled if no new request arrives within self.timeout.

        Overridden by ForkingMixIn.
        N((R"((s$/usr/lib64/python2.7/SocketServer.pyR3,scCstS(snVerify the request.  May be overridden.

        Return True if we should proceed with this request.

        (R(R"R;R<((s$/usr/lib64/python2.7/SocketServer.pyR73scCs!|j||�|j|�dS(sVCall finish_request.

        Overridden by ForkingMixIn and ThreadingMixIn.

        N(tfinish_requestR:(R"R;R<((s$/usr/lib64/python2.7/SocketServer.pyR8;scCsdS(sDCalled to clean-up the server.

        May be overridden.

        N((R"((s$/usr/lib64/python2.7/SocketServer.pytserver_closeDscCs|j|||�dS(s8Finish one request by instantiating RequestHandlerClass.N(R(R"R;R<((s$/usr/lib64/python2.7/SocketServer.pyR=LscCs|j|�dS(s3Called to shutdown and close an individual request.N(t
close_request(R"R;((s$/usr/lib64/python2.7/SocketServer.pyR:PscCsdS(s)Called to clean up an individual request.N((R"R;((s$/usr/lib64/python2.7/SocketServer.pyR?TscCs5ddGHdG|GHddl}|j�ddGHdS(stHandle an error gracefully.  May be overridden.

        The default is to print a traceback and continue.

        t-i(s4Exception happened during processing of request fromi����N(t	tracebackt	print_exc(R"R;R<RA((s$/usr/lib64/python2.7/SocketServer.pyR9Xs	
N(t__name__t
__module__t__doc__R0R1R#R$R+R-R5R&R3R7R8R>R=R:R?R9(((s$/usr/lib64/python2.7/SocketServer.pyR�s *													cBsweZdZejZejZdZe	Z
ed�Zd�Z
d�Zd�Zd�Zd�Zd�Zd	�ZRS(
s3Base class for various socket-based server classes.

    Defaults to synchronous IP stream (i.e., TCP).

    Methods for the caller:

    - __init__(server_address, RequestHandlerClass, bind_and_activate=True)
    - serve_forever(poll_interval=0.5)
    - shutdown()
    - handle_request()  # if you don't use serve_forever()
    - fileno() -> int   # for select()

    Methods that may be overridden:

    - server_bind()
    - server_activate()
    - get_request() -> request, client_address
    - handle_timeout()
    - verify_request(request, client_address)
    - process_request(request, client_address)
    - shutdown_request(request)
    - close_request(request)
    - handle_error()

    Methods for derived classes:

    - finish_request(request, client_address)

    Class variables that may be overridden by derived classes or
    instances:

    - timeout
    - address_family
    - socket_type
    - request_queue_size (only for stream sockets)
    - allow_reuse_address

    Instance variables:

    - server_address
    - RequestHandlerClass
    - socket

    icCsjtj|||�tj|j|j�|_|rfy|j�|j�Wqf|j��qfXndS(s/Constructor.  May be extended, do not override.N(RR#R.taddress_familytsocket_typetserver_bindR$R>(R"RRtbind_and_activate((s$/usr/lib64/python2.7/SocketServer.pyR#�s

cCsQ|jr(|jjtjtjd�n|jj|j�|jj�|_dS(sOCalled by constructor to bind the socket.

        May be overridden.

        iN(tallow_reuse_addressR.t
setsockoptt
SOL_SOCKETtSO_REUSEADDRtbindRtgetsockname(R"((s$/usr/lib64/python2.7/SocketServer.pyRH�s	cCs|jj|j�dS(sSCalled by constructor to activate the server.

        May be overridden.

        N(R.tlistentrequest_queue_size(R"((s$/usr/lib64/python2.7/SocketServer.pyR$�scCs|jj�dS(sDCalled to clean-up the server.

        May be overridden.

        N(R.tclose(R"((s$/usr/lib64/python2.7/SocketServer.pyR>�scCs
|jj�S(sMReturn socket file number.

        Interface required by select().

        (R.tfileno(R"((s$/usr/lib64/python2.7/SocketServer.pyRS�scCs
|jj�S(sYGet the request and client address from the socket.

        May be overridden.

        (R.taccept(R"((s$/usr/lib64/python2.7/SocketServer.pyR6�scCs<y|jtj�Wntjk
r*nX|j|�dS(s3Called to shutdown and close an individual request.N(R-R.tSHUT_WRRR?(R"R;((s$/usr/lib64/python2.7/SocketServer.pyR:�s
cCs|j�dS(s)Called to clean up an individual request.N(RR(R"R;((s$/usr/lib64/python2.7/SocketServer.pyR?�s(RCRDRER.tAF_INETRFtSOCK_STREAMRGRQR RJRR#RHR$R>RSR6R:R?(((s$/usr/lib64/python2.7/SocketServer.pyRfs-		
						
cBsGeZdZeZejZdZd�Z	d�Z
d�Zd�ZRS(sUDP server class.i cCs.|jj|j�\}}||jf|fS(N(R.trecvfromtmax_packet_size(R"tdatatclient_addr((s$/usr/lib64/python2.7/SocketServer.pyR6�scCsdS(N((R"((s$/usr/lib64/python2.7/SocketServer.pyR$�scCs|j|�dS(N(R?(R"R;((s$/usr/lib64/python2.7/SocketServer.pyR:�scCsdS(N((R"R;((s$/usr/lib64/python2.7/SocketServer.pyR?�s(
RCRDRER RJR.t
SOCK_DGRAMRGRYR6R$R:R?(((s$/usr/lib64/python2.7/SocketServer.pyR�s				cBs;eZdZdZdZdZd�Zd�Zd�Z	RS(s5Mix-in class to handle each request in a new process.i,i(cCs4|jdkrdSx�t|j�|jkr�y,tjdd�\}}|jj|�Wqtk
r�}|jtj	kr�|jj
�q�|jtjkr�Pq�qXqWx�|jj�D]p}y/tj|tj
�\}}|jj|�Wq�tk
r+}|jtj	kr,|jj|�q,q�Xq�WdS(s7Internal routine to wait for children that have exited.Ni����i(tactive_childrenR0tlentmax_childrentostwaitpidtdiscardRRtECHILDR%RtcopytWNOHANG(R"tpidt_R((s$/usr/lib64/python2.7/SocketServer.pytcollect_childrens$cCs|j�dS(snWait for zombies after self.timeout seconds of inactivity.

        May be extended, do not override.
        N(Rh(R"((s$/usr/lib64/python2.7/SocketServer.pyR3(scCs�|j�tj�}|r[|jdkr:t�|_n|jj|�|j|�dSy.|j||�|j	|�tj
d�Wn9z!|j||�|j	|�Wdtj
d�XnXdS(s-Fork a new subprocess to process the request.Nii(RhR`tforkR]R0R'taddR?R=R:t_exitR9(R"R;R<Rf((s$/usr/lib64/python2.7/SocketServer.pyR8/s"


N(
RCRDRER1R0R]R_RhR3R8(((s$/usr/lib64/python2.7/SocketServer.pyR
�s	"	cBs&eZdZeZd�Zd�ZRS(s4Mix-in class to handle each request in a new thread.cCsLy!|j||�|j|�Wn$|j||�|j|�nXdS(sgSame as in BaseServer but as a thread.

        In addition, exception handling is done here.

        N(R=R:R9(R"R;R<((s$/usr/lib64/python2.7/SocketServer.pytprocess_request_threadPscCs;tjd|jd||f�}|j|_|j�dS(s*Start a new thread to process the request.ttargetRN(RtThreadRltdaemon_threadstdaemontstart(R"R;R<tt((s$/usr/lib64/python2.7/SocketServer.pyR8]s(RCRDRER RoRlR8(((s$/usr/lib64/python2.7/SocketServer.pyR	Is	
cBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRescBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRfscBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRhscBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRiscBseZejZRS((RCRDR.RRF(((s$/usr/lib64/python2.7/SocketServer.pyRmscBseZejZRS((RCRDR.RRF(((s$/usr/lib64/python2.7/SocketServer.pyR
pscBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRsscBseZRS((RCRD(((s$/usr/lib64/python2.7/SocketServer.pyRuscBs2eZdZd�Zd�Zd�Zd�ZRS(s�Base class for request handler classes.

    This class is instantiated for each request to be handled.  The
    constructor sets the instance variables request, client_address
    and server, and then calls the handle() method.  To implement a
    specific service, all you need to do is to derive a class which
    defines a handle() method.

    The handle() method can find the request as self.request, the
    client address as self.client_address, and the server (in case it
    needs access to per-server information) as self.server.  Since a
    separate instance is created for each request, the handle() method
    can define other arbitrary instance variables.

    cCsE||_||_||_|j�z|j�Wd|j�XdS(N(R;R<tservertsetupthandletfinish(R"R;R<Rs((s$/usr/lib64/python2.7/SocketServer.pyR#�s			
cCsdS(N((R"((s$/usr/lib64/python2.7/SocketServer.pyRt�scCsdS(N((R"((s$/usr/lib64/python2.7/SocketServer.pyRu�scCsdS(N((R"((s$/usr/lib64/python2.7/SocketServer.pyRv�s(RCRDRER#RtRuRv(((s$/usr/lib64/python2.7/SocketServer.pyRws
	
		cBs8eZdZdZdZdZeZd�Z	d�Z
RS(s4Define self.rfile and self.wfile for stream sockets.i����icCs�|j|_|jdk	r1|jj|j�n|jrY|jjtjtj	t
�n|jjd|j�|_
|jjd|j�|_dS(Ntrbtwb(R;t
connectionR1R0t
settimeouttdisable_nagle_algorithmRKR.tIPPROTO_TCPtTCP_NODELAYRtmakefiletrbufsizetrfiletwbufsizetwfile(R"((s$/usr/lib64/python2.7/SocketServer.pyRt�s	cCsU|jjs7y|jj�Wq7tjk
r3q7Xn|jj�|jj�dS(N(R�tclosedtflushR.RRRR�(R"((s$/usr/lib64/python2.7/SocketServer.pyRv�s
N(RCRDRERR�R0R1R R{RtRv(((s$/usr/lib64/python2.7/SocketServer.pyR�s		
cBs eZdZd�Zd�ZRS(s6Define self.rfile and self.wfile for datagram sockets.cCsoyddlm}Wn!tk
r7ddlm}nX|j\|_|_||j�|_|�|_dS(Ni����(tStringIO(t	cStringIOR�tImportErrorR;tpacketR.R�R�(R"R�((s$/usr/lib64/python2.7/SocketServer.pyRt�s
cCs#|jj|jj�|j�dS(N(R.tsendtoR�tgetvalueR<(R"((s$/usr/lib64/python2.7/SocketServer.pyRv�s(RCRDRERtRv(((s$/usr/lib64/python2.7/SocketServer.pyR�s		(((((REt__version__R.RtsysR`RRR�tdummy_threadingt__all__thasattrtextendRRRRR
R	RRRRRR
RRRRR(((s$/usr/lib64/python2.7/SocketServer.pyt<module>xsH
	
		�~K.+

© 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
Finished
Effective Time Management

Effective Time Management

in Management
5.00
1:30 Hours
1 Aug 2023
₹35.40
40% Offer
The Future of Energy

The Future of Energy

in Science
2.50
1:10 Hours
8 Jul 2021
₹42.48 ₹70.80
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 ...