-
Notifications
You must be signed in to change notification settings - Fork 89
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
1 parent
4ee2846
commit 7ae41ec
Showing
1 changed file
with
0 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,8 +18,6 @@ | |
) | ||
from powerpwn.copilot.dump.input_extractor.document_input_extractor import DocumentInputExtractor | ||
from powerpwn.copilot.dump.input_extractor.input_file_reader import InputFileReader | ||
from powerpwn.copilot.enums.copilot_scenario_enum import CopilotScenarioEnum | ||
from powerpwn.copilot.enums.verbose_enum import VerboseEnum | ||
from powerpwn.copilot.exceptions.copilot_connected_user_mismatch import CopilotConnectedUserMismatchException | ||
from powerpwn.copilot.exceptions.copilot_connection_failed_exception import CopilotConnectionFailedException | ||
from powerpwn.copilot.loggers.composite_logger import CompositeLogger | ||
|
@@ -215,14 +213,3 @@ def __log_response(self, websocket_resp: Optional[WebsocketMessage]) -> None: | |
self.__log(LogType.response, formatted_message) | ||
else: | ||
self.__log(LogType.response, "None") | ||
|
||
|
||
if __name__ == "__main__": | ||
parsed_args = ChatArguments( | ||
user="[email protected]", | ||
password="", | ||
use_cached_access_token=True, | ||
verbose=VerboseEnum.mid, | ||
scenario=CopilotScenarioEnum.officeweb, | ||
) | ||
Dump(parsed_args, "whoami_6fc290bb-55a5-4802-ab06-daeaa455453c").get_sharepoint_sites_dump() |