forked from Cl0udG0d/SZhe_Scan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
231 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# @Time : 2022/3/17 0:40 | ||
# @Author : Cl0udG0d | ||
# @File : szheException.py | ||
# @Github: https://github.com/Cl0udG0d | ||
|
||
|
||
class reqBadExceptin(Exception): | ||
"this is user's Exception for check the length of name " | ||
def __init__(self,url): | ||
self.url = url | ||
def __str__(self): | ||
return "请求失败 {}".format(self.url) | ||
|
||
|
||
def test(): | ||
print('hi') | ||
|
||
|
||
if __name__ == '__main__': | ||
test() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# @Time : 2022/3/16 16:56 | ||
# @Author : Cl0udG0d | ||
# @File : plugin1.py | ||
# @Github: https://github.com/Cl0udG0d | ||
import requests | ||
import re | ||
|
||
def run(url): | ||
result = { | ||
'status': 'fail' | ||
} | ||
vul_url = '%s/veribaze/angelo.mdb' % url | ||
response = requests.get(vul_url).text | ||
|
||
if re.search('Standard Jet DB', response): | ||
result['VerifyInfo'] = {} | ||
result['VerifyInfo']['URL'] = url | ||
result['VerifyInfo']['context'] = response | ||
result['status'] = 'success' | ||
return result | ||
|
||
|
||
def test(): | ||
print('hi') | ||
|
||
|
||
if __name__ == '__main__': | ||
test() |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.