shell bypass 403

UnknownSec Shell

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

name : SimpleXMLRPCServer.pyc
�
zfc@s�dZddlZddlmZddlZddlZddlZddlZddlZddlZyddl	Z	Wne
k
r�eZ	nXed�Z
d�Zd�Zdfd��YZd	ejfd
��YZdejefd��YZd
efd��YZdefd��YZedkr�dGHeddf�Zeje�ejd�d�ej�ej�ndS(s;Simple XML-RPC Server.

This module can be used to create simple XML-RPC servers
by creating a server and either installing functions, a
class instance, or by extending the SimpleXMLRPCServer
class.

It can also be used to handle XML-RPC requests in a CGI
environment using CGIXMLRPCRequestHandler.

A list of possible usage patterns follows:

1. Install functions:

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_function(pow)
server.register_function(lambda x,y: x+y, 'add')
server.serve_forever()

2. Install an instance:

class MyFuncs:
    def __init__(self):
        # make all of the string functions available through
        # string.func_name
        import string
        self.string = string
    def _listMethods(self):
        # implement this method so that system.listMethods
        # knows to advertise the strings methods
        return list_public_methods(self) + \
                ['string.' + method for method in list_public_methods(self.string)]
    def pow(self, x, y): return pow(x, y)
    def add(self, x, y) : return x + y

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(MyFuncs())
server.serve_forever()

3. Install an instance with custom dispatch method:

class Math:
    def _listMethods(self):
        # this method must be present for system.listMethods
        # to work
        return ['add', 'pow']
    def _methodHelp(self, method):
        # this method must be present for system.methodHelp
        # to work
        if method == 'add':
            return "add(2,3) => 5"
        elif method == 'pow':
            return "pow(x, y[, z]) => number"
        else:
            # By convention, return empty
            # string if no help is available
            return ""
    def _dispatch(self, method, params):
        if method == 'pow':
            return pow(*params)
        elif method == 'add':
            return params[0] + params[1]
        else:
            raise 'bad method'

server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()
server.register_instance(Math())
server.serve_forever()

4. Subclass SimpleXMLRPCServer:

class MathServer(SimpleXMLRPCServer):
    def _dispatch(self, method, params):
        try:
            # We are forcing the 'export_' prefix on methods that are
            # callable through XML-RPC to prevent potential security
            # problems
            func = getattr(self, 'export_' + method)
        except AttributeError:
            raise Exception('method "%s" is not supported' % method)
        else:
            return func(*params)

    def export_add(self, x, y):
        return x + y

server = MathServer(("localhost", 8000))
server.serve_forever()

5. CGI script:

server = CGIXMLRPCRequestHandler()
server.register_function(pow)
server.handle_request()
i����N(tFaultcCsg|r|jd�}n	|g}x?|D]7}|jd�rPtd|��q(t||�}q(W|S(sGresolve_dotted_attribute(a, 'b.c.d') => a.b.c.d

    Resolves a dotted attribute name to an object.  Raises
    an AttributeError if any attribute in the chain starts with a '_'.

    If the optional allow_dotted_names argument is false, dots are not
    supported and this function operates similar to getattr(obj, attr).
    t.t_s(attempt to access private attribute "%s"(tsplitt
startswithtAttributeErrortgetattr(tobjtattrtallow_dotted_namestattrsti((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytresolve_dotted_attributess
	
cCsEgt|�D]4}|jd�r
tt||�d�r
|^q
S(skReturns a list of attribute strings, found in the specified
    object, which represent callable attributesRt__call__(tdirRthasattrR(Rtmember((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytlist_public_methods�scCs+i}x|D]}d||<q
W|j�S(s�remove_duplicates([2,2,2,1,3,3]) => [3,1,2]

    Returns a copy of a list without duplicates. Every list
    item must be hashable and the order of the items in the
    resulting list is not defined.
    i(tkeys(tlsttutx((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytremove_duplicates�s
tSimpleXMLRPCDispatchercBs�eZdZedd�Zed�Zdd�Zd�Zd�Z	ddd�Z
d�Zd�Zd	�Z
d
�Zd�ZRS(
s'Mix-in class that dispatches XML-RPC requests.

    This class is used to register XML-RPC method handlers
    and then to dispatch them. This class doesn't need to be
    instanced directly when used by SimpleXMLRPCServer but it
    can be instanced when used by the MultiPathXMLRPCServer.
    cCs(i|_d|_||_||_dS(N(tfuncstNonetinstancet
allow_nonetencoding(tselfRR((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt__init__�s			cCs||_||_dS(sRegisters an instance to respond to XML-RPC requests.

        Only one instance can be installed at a time.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called. Methods beginning with an '_'
        are considered private and will not be called by
        SimpleXMLRPCServer.

        If a registered function matches an XML-RPC request, then it
        will be called instead of the registered instance.

        If the optional allow_dotted_names argument is true and the
        instance does not have a _dispatch method, method names
        containing dots are supported and resolved, as long as none of
        the name segments start with an '_'.

            *** SECURITY WARNING: ***

            Enabling the allow_dotted_names options allows intruders
            to access your module's global variables and may allow
            intruders to execute arbitrary code on your machine.  Only
            use this option on a secure, closed network.

        N(RR	(RRR	((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytregister_instance�s!	cCs)|dkr|j}n||j|<dS(s�Registers a function to respond to XML-RPC requests.

        The optional name argument can be used to set a Unicode name
        for the function.
        N(Rt__name__R(Rtfunctiontname((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytregister_function�scCs2|jji|jd6|jd6|jd6�dS(s�Registers the XML-RPC introspection methods in the system
        namespace.

        see http://xmlrpc.usefulinc.com/doc/reserved.html
        ssystem.listMethodsssystem.methodSignaturessystem.methodHelpN(Rtupdatetsystem_listMethodstsystem_methodSignaturetsystem_methodHelp(R((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt register_introspection_functions�s
cCs|jji|jd6�dS(s�Registers the XML-RPC multicall method in the system
        namespace.

        see http://www.xmlrpc.com/discuss/msgReader$1208ssystem.multicallN(RR$tsystem_multicall(R((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytregister_multicall_functions�scCsyytj|�\}}|dk	r6|||�}n|j||�}|f}tj|ddd|jd|j�}Wn�tk
r�}tj|d|jd|j�}nStj	�\}}	}
tjtjdd||	f�d|jd|j�}nX|S(s�Dispatches an XML-RPC method from marshalled (XML) data.

        XML-RPC methods are dispatched from the marshalled (XML) data
        using the _dispatch method and the result is returned as
        marshalled data. For backwards compatibility, a dispatch
        function can be provided as an argument (see comment in
        SimpleXMLRPCRequestHandler.do_POST) but overriding the
        existing method through subclassing is the preferred means
        of changing method dispatch behavior.
        tmethodresponseiRRs%s:%sN(
t	xmlrpclibtloadsRt	_dispatchtdumpsRRRtsystexc_info(Rtdatatdispatch_methodtpathtparamstmethodtresponsetfaulttexc_typet	exc_valuetexc_tb((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt_marshaled_dispatch�s"	cCs�|jj�}|jdk	r}t|jd�rLt||jj��}q}t|jd�s}t|t|j��}q}n|j�|S(swsystem.listMethods() => ['add', 'subtract', 'multiple']

        Returns a list of the methods supported by the server.t_listMethodsR.N(	RRRRRRR=Rtsort(Rtmethods((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR%s
cCsdS(s#system.methodSignature('add') => [double, int, int]

        Returns a list describing the signature of the method. In the
        above example, the add method takes two integers as arguments
        and returns a double result.

        This server does NOT support system.methodSignature.ssignatures not supported((Rtmethod_name((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR&-scCs�d}||jkr%|j|}ny|jdk	r�t|jd�rV|jj|�St|jd�s�yt|j||j�}Wq�tk
r�q�Xq�n|dkr�dSddl}|j	|�SdS(s�system.methodHelp('add') => "Adds two integers together"

        Returns a string containing documentation for the specified method.t_methodHelpR.ti����N(
RRRRRARR	Rtpydoctgetdoc(RR@R6RC((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR':s$

c
Cs�g}x�|D]�}|d}|d}y |j|j||�g�Wq
tk
r}}|ji|jd6|jd6�q
tj�\}}}	|jidd6d||fd6�q
Xq
W|S(s�system.multicall([{'methodName': 'add', 'params': [2, 2]}, ...]) => [[4], ...]

        Allows the caller to package multiple XML-RPC calls into a single
        request.

        See http://www.xmlrpc.com/discuss/msgReader$1208
        t
methodNameR5t	faultCodetfaultStringis%s:%s(tappendR.RRFRGR0R1(
Rt	call_listtresultstcallR@R5R8R9R:R;((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR)Zs 



 

cCs�d}y|j|}Wnxtk
r�|jdk	r�t|jd�r[|jj||�Syt|j||j�}Wq�tk
r�q�Xq�nX|dk	r�||�St	d|��dS(s�Dispatches the XML-RPC method.

        XML-RPC calls are forwarded to a registered function that
        matches the called XML-RPC method name. If no such function
        exists then the call is forwarded to the registered instance,
        if available.

        If the registered instance has a _dispatch method then that
        method will be called with the name of the XML-RPC method and
        its parameters as a tuple
        e.g. instance._dispatch('add',(2,3))

        If the registered instance does not have a _dispatch method
        then the instance will be searched to find a matching method
        and, if found, will be called.

        Methods beginning with an '_' are considered private and will
        not be called.
        R.smethod "%s" is not supportedN(
RRtKeyErrorRRR.RR	Rt	Exception(RR6R5tfunc((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR.zs"


N(R t
__module__t__doc__tFalseRRRR#R(R*R<R%R&R'R)R.(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR�s$		%		
	 	 tSimpleXMLRPCRequestHandlercBs~eZdZd
ZdZdZeZej	dej
ejB�Zd�Z
d�Zd�Zd	�Zd
�Zddd�ZRS(s�Simple XML-RPC request handler class.

    Handles all HTTP POST requests and attempts to decode them as
    XML-RPC requests.
    t/s/RPC2ixi����s�
                            \s* ([^\s;]+) \s*            #content-coding
                            (;\s* q \s*=\s* ([0-9\.]+))? #q
                            cCs�i}|jjdd�}xl|jd�D][}|jj|�}|r+|jd�}|rjt|�nd}|||jd�<q+q+W|S(NsAccept-EncodingRBt,ig�?i(theaderstgetRt	aepatterntmatchtgrouptfloat(RtrtaeteRXtv((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytaccept_encodings�scCs!|jr|j|jkStSdS(N(t	rpc_pathsR4tTrue(R((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytis_rpc_path_valid�s	c
CsN|j�s|j�dSy�d}t|jd�}g}xV|r�t||�}|jj|�}|spPn|j|�|t|d�8}q?Wdj	|�}|j
|�}|dkr�dS|jj
|t|dd�|j�}Wn�tk
rt}|jd�t|jd	�rW|jjrW|jd
t|��|jdtj��n|jdd
�|j�n�X|jd�|jdd�|jdk	rt|�|jkr|j�jdd�}	|	ry#tj|�}|jdd�Wqtk
r
qXqqn|jdtt|���|j�|jj |�dS(s�Handles the HTTP POST request.

        Attempts to interpret all HTTP POST requests as XML-RPC calls,
        which are forwarded to the server's _dispatch method for handling.
        Ni
iscontent-lengthi����RBR.i�t_send_traceback_headersX-exceptionsX-tracebacksContent-lengtht0i�sContent-typestext/xmltgzipisContent-Encodingi(i�(!Rbt
report_404tintRUtmintrfiletreadRHtlentjointdecode_request_contentRtserverR<RR4RMt
send_responseRRctsend_headertstrt	tracebackt
format_exctend_headerstencode_thresholdR_RVR,tgzip_encodetNotImplementedErrortwfiletwrite(
Rtmax_chunk_sizetsize_remainingtLt
chunk_sizetchunkR2R7R]tq((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytdo_POST�sT
	
	"




cCs�|jjdd�j�}|dkr+|S|dkr�ytj|�SWq�tk
ro|jdd|�q�tk
r�|jdd�q�Xn|jdd|�|jdd	�|j	�dS(
Nscontent-encodingtidentityRei�sencoding %r not supportedi�serror decoding gzip contentsContent-lengthRd(
RURVtlowerR,tgzip_decodeRwRot
ValueErrorRpRt(RR2R((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyRms

cCs]|jd�d}|jdd�|jdtt|���|j�|jj|�dS(Ni�sNo such pagesContent-types
text/plainsContent-length(RoRpRqRkRtRxRy(RR7((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyRf*s

t-cCs)|jjr%tjj|||�ndS(s$Selectively log an accepted request.N(RntlogRequeststBaseHTTPServertBaseHTTPRequestHandlertlog_request(Rtcodetsize((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR�3s(RSs/RPC2(R RORPR`RutwbufsizeRatdisable_nagle_algorithmtretcompiletVERBOSEt
IGNORECASERWR_RbR�RmRfR�(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyRR�s			F			tSimpleXMLRPCServercBs2eZdZeZeZeeeded�Z	RS(sgSimple XML-RPC server.

    Simple XML-RPC server that allows functions and a single instance
    to be installed to handle requests. The default implementation
    attempts to dispatch XML-RPC calls to the functions or instance
    installed in the server. Override the _dispatch method inhereted
    from SimpleXMLRPCDispatcher to change this behavior.
    cCs�||_tj|||�tjj||||�tdk	r�ttd�r�tj|j�tj	�}|tj
O}tj|j�tj|�ndS(Nt
FD_CLOEXEC(R�RRtSocketServert	TCPServertfcntlRRtfilenotF_GETFDR�tF_SETFD(RtaddrtrequestHandlerR�RRtbind_and_activatetflags((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyRLs	
N(
R RORPRatallow_reuse_addressRQRcRRRR(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR�9s
	tMultiPathXMLRPCServercBsGeZdZeeeded�Zd�Zd�Z	ddd�Z
RS(s\Multipath XML-RPC Server
    This specialization of SimpleXMLRPCServer allows the user to create
    multiple Dispatcher instances and assign them to different
    HTTP request paths.  This makes it possible to run two or more
    'virtual XML-RPC servers' at the same port.
    Make sure that the requestHandler accepts the paths in question.
    cCs>tj|||||||�i|_||_||_dS(N(R�RtdispatchersRR(RR�R�R�RRR�((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyRcs

		cCs||j|<|S(N(R�(RR4t
dispatcher((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytadd_dispatcherls
cCs|j|S(N(R�(RR4((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pytget_dispatcherpscCs{y |j|j|||�}WnTtj�d \}}tjtjdd||f�d|jd|j�}nX|S(Niis%s:%sRR(	R�R<R0R1R,R/RRR(RR2R3R4R7R9R:((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR<ss
N(R RORPRRRaRQRRR�R�R<(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR�[s		tCGIXMLRPCRequestHandlercBs;eZdZedd�Zd�Zd�Zdd�ZRS(s3Simple handler for XML-RPC data passed through CGI.cCstj|||�dS(N(RR(RRR((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR�scCs8|j|�}dGHdt|�GHHtjj|�dS(sHandle a single XML-RPC requestsContent-Type: text/xmlsContent-Length: %dN(R<RkR0tstdoutRy(Rtrequest_textR7((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt
handle_xmlrpc�s
cCs}d}tjj|\}}tji|d6|d6|d6}d||fGHdtjGHdt|�GHHtjj|�dS(	s�Handle a single HTTP GET request.

        Default implementation indicates an error because
        XML-RPC uses the POST method.
        i�R�tmessagetexplains
Status: %d %ssContent-Type: %ssContent-Length: %dN(	R�R�t	responsestDEFAULT_ERROR_MESSAGEtDEFAULT_ERROR_CONTENT_TYPERkR0R�Ry(RR�R�R�R7((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt
handle_get�scCs�|dkr4tjjdd�dkr4|j�nmyttjjdd��}Wnttfk
rrd}nX|dkr�tj	j
|�}n|j|�dS(s�Handle a single XML-RPC request passed through a CGI post method.

        If no XML data is given then it is read from stdin. The resulting
        XML-RPC response is printed to stdout along with the correct HTTP
        headers.
        tREQUEST_METHODtGETtCONTENT_LENGTHi����N(RtostenvironRVR�Rgt	TypeErrorR�R0tstdinRjR�(RR�tlength((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pythandle_request�s

N(	R RORPRQRRR�R�R�(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyR��s
	
	t__main__s#Running XML-RPC server on port 8000t	localhosti@cCs||S(N((Rty((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt<lambda>�RBtadd(RPR,RR�R�R0R�RrR�R�tImportErrorRRaRRRRR�RRR�R�R�R�R RnR#tpowR*t
serve_forever(((s*/usr/lib64/python2.7/SimpleXMLRPCServer.pyt<module>as:

		
�	�	!&=



© 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
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
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 ...