Skip to content

Commit

Permalink
Merge pull request #26 from Speyedr/bounty-exploit-update
Browse files Browse the repository at this point in the history
Version 0.2.0 - Bounty exploit update, automatically request UAC permissions
  • Loading branch information
Speyedr authored Mar 15, 2023
2 parents 6c7c296 + 9cf332b commit 41e2c84
Show file tree
Hide file tree
Showing 19 changed files with 9 additions and 21 deletions.
Empty file modified .gitignore
100755 → 100644
Empty file.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

[Dutch](translations/NL/README.md) | English | [French](translations/FR/README.md) | [Romanian](translations/RO/README.md) | [Russian](translations/RU/README.md) | [Spanish](translations/ES/README.md)

**8th of March, 2022 UPDATE: Rockstar has patched the current spectator exploit.**
**16th of March, 2023 UPDATE: I have tweaked filter #2 to block the resource that is being abused to send bounty notifications.**

**I've made an announcement on [the future of SCBlocker](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Download v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)
# [Download v0.2.0](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.2.0/SocialClubBlocker-0.2.0.zip)

<img src="/img/SCBlockerTease1.png" alt="Main Menu" height=300 width=562>

Expand Down
4 changes: 2 additions & 2 deletions filter.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def update_max_offset(self, offset):


class FilterSettings:
CLIENT_POST_ENDPOINT = "/gta5/11/gameservices/Presence.asmx/GetMessages" # Update if R* change the endpoint
CLIENT_POST_HOST = "prs-gta5-prod.ros.rockstargames.com" # Update if R* change the website
CLIENT_POST_ENDPOINT = "/gta5/11/gameservices/Inbox.asmx/Get(?:Unread)?Messages" # Update if R* change the endpoint
CLIENT_POST_HOST = "inbox-gta5-prod.ros.rockstargames.com" # Update if R* change the website
CLIENT_POST_METHOD = "POST" # Update if R* change the method
CLIENT_POST_PROTOCOL = "HTTP/1.1" # Update if R* change the protocol
CLIENT_LINES = [CLIENT_POST_METHOD + " " + CLIENT_POST_ENDPOINT + " " + CLIENT_POST_PROTOCOL,
Expand Down
Empty file modified icon.ico
100755 → 100644
Empty file.
Empty file modified img/SCBlockerTease1.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/SCBlockerTease2.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified img/SCBlockerTease3.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified logger.py
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion main.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

DONATE = "https://ko-fi.com/speyedr"

VERSION = "0.1.1"
VERSION = "0.2.0"
WINDOW_NAME = "Speyedr's SocialClub Notification Blocker v" + VERSION
UI_WAIT_TIME = 0.01
UI_TOP_MARGIN = 1
Expand Down
Empty file modified menu_options.py
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion requirements.txt
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pydivert~=2.1.0
colorama~=0.4.1
cx-Freeze==6.8.3
cx-Freeze~=6.10.0
Empty file modified settings.py
100755 → 100644
Empty file.
6 changes: 3 additions & 3 deletions setup.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
replace_paths=[("*", "")], optimize=2, zip_include_packages="*",
zip_exclude_packages=zip_exclude_packages, silent=True)
executables = [
Executable('main.py', targetName="SCBlocker.exe", icon="icon.ico",
copyright='Copyright (C) 2022 Daniel Summer')
Executable('main.py', targetName="SCBlocker.exe", icon="icon.ico", uac_admin=True,
copyright='Copyright (C) 2023 Daniel Summer')
]

version = "0.1.1"
version = "0.2.0"

build_path = 'build/exe.win-amd64-{}.{}'.format(sys.version_info.major, sys.version_info.minor)

Expand Down
2 changes: 0 additions & 2 deletions translations/ES/README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

[Dutch](../NL/README.md) | [English](../../README.md) | [French](../FR/README.md) | [Romanian](../RO/README.md) | [Russian](../RU/README.md) | Spanish

**8 de marzo de 2022 ACTUALIZACION: Rockstar ha corregido el exploit del espectador.**

**Hice un anuncio sobre el mismo [futuro de SCBlocker](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Descargar v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)

Expand Down
2 changes: 0 additions & 2 deletions translations/FR/README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

[Dutch](../NL/README.md) | [English](../../README.md) | French | [Romanian](../RO/README.md) | [Russian](../RU/README.md) | [Spanish](../ES/README.md)

**8 Mars 2022 MISE A JOUR: Rockstar a patch le problème du spectateur mode.**

**J'ai fait une annonce ici [Le futur de SCBlocker (bientôt traduit)](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Download v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)

Expand Down
2 changes: 0 additions & 2 deletions translations/NL/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

Dutch | [English](../../README.md) | [French](../FR/README.md) | [Romanian](../RO/README.md) | [Russian](../RU/README.md) | [Spanish](../ES/README.md)

**8 maart 2022 UPDATE: Rockstar heeft de huidige toeschouwers-exploit gepatcht.**

**Ik heb een aankondiging gemaakt in [de toekomst van SCBlocker](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Download v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)

Expand Down
2 changes: 0 additions & 2 deletions translations/RO/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

[Dutch](../NL/README.md) | [English](../../README.md) | [French](../FR/README.md) | Romanian | [Russian](../RU/README.md) | [Spanish](../ES/README.md)

**8 Martie, 2022 UPDATE: Rockstar a reparat exploit-ul legat de modul spectator.**

**Am făcut un anunț despre [viitorul SCBlocker](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Descarcă v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)

Expand Down
2 changes: 0 additions & 2 deletions translations/RU/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

[Dutch](../NL/README.md) | [English](../../README.md) | [French](../FR/README.md) | [Romanian](../RO/README.md) | Russian | [Spanish](../ES/README.md)

**ОБНОВЛЕНИЕ ОТ 8 МАРТА 2022: Rockstar убрали эксплоит, позволяющий приглашать в режиме наблюдателя.**

**Я сделал объявление по поводу [будущего SCBlocker](https://github.com/Speyedr/socialclub-notification-blocker/discussions/12).**

# [Скачать v0.1.1](https://github.com/Speyedr/socialclub-notification-blocker/releases/download/v0.1.1/SocialClubBlocker-0.1.1.zip)

Expand Down
Empty file modified util/sync_readme.py
100755 → 100644
Empty file.

0 comments on commit 41e2c84

Please sign in to comment.