Skip to content

Commit 25b766d

Browse files
committed
Update Pyinstaller.cpp
1 parent fc5bf82 commit 25b766d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/Pyinstaller.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@
33
#include <vector>
44
#include <string>
55
#include <cstring>
6-
#include <winsock2.h>
76
#include <random>
87
#include <sstream>
98
#include <filesystem>
109
#include <queue>
1110
#include <condition_variable>
1211
#include <future>
12+
1313
#include "../include/PyInstArchive.h"
1414
#include "../include/zlib.h"
1515

16-
#pragma comment(lib, "ws2_32.lib")
17-
#pragma comment(lib, "oleaut32.lib")
18-
1916
/**
2017
* @brief The magic string used to identify PyInstaller archives.
2118
*
@@ -212,7 +209,6 @@ bool PyInstArchive::getCArchiveInfo() {
212209
return true;
213210
}
214211

215-
216212
/**
217213
* @brief Parses the Table of Contents (TOC) from the PyInstaller archive.
218214
*
@@ -283,7 +279,6 @@ void PyInstArchive::parseTOC() {
283279
std::cout << "[+] Found " << tocList.size() << " files in CArchive" << std::endl;
284280
}
285281

286-
287282
/**
288283
* @brief Displays the list of files in the PyInstaller archive.
289284
*
@@ -395,7 +390,6 @@ void PyInstArchive::decompressAndExtractFile(const CTOCEntry& tocEntry, const st
395390
}
396391
}
397392

398-
399393
/**
400394
* @brief Parses command-line arguments for interacting with a PyInstaller archive.
401395
*

0 commit comments

Comments
 (0)