Tråd bedømmelse:
- 0 Stemmer - 0 Gennemsnit
- 1
- 2
- 3
- 4
- 5
Spotify Free reklame hack
|
15-01-2018, 00:47
|
|
Lrsen
Medlem
|
Indlæg: 16
Registreret: Dec 2017
Omdømme:
0
|
|
Spotify Free reklame hack
Hey,
Jeg fandt et trick gennem reddit som forklarer hvordan man kunne blokere Spotify i at få adgang til sine reklame ressourcer. Tricket fungere ved at redirecte de requests som Spotify laver til adressen 0.0.0.0 hvor der ikke ligger nogle reklame ressourcer. Og Spotify er kodet sådan at det vil fortsætte med at afspille musik, hvis det ikke kan opnå adgang til reklame materiale.
Tricket fungere både til Mac, Linux og Windows men kræver lidt tilpasning i koden, da det er sat op til Windows på nuværende tidspunkt. Kan muligvis tilpasses Android også, men kræver vist root adgang.
Håber det kan bruges.
Kode: @echo
title Spotify-noad
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
REM --> Adding lines to hosts file.
:ADD
SET NEWLINE=^& echo.
ECHO # Spotify exemptions
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "securepubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 securepubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "adclick.g.doublecklick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 adclick.g.doublecklick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "adeventtracker.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 adeventtracker.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "ads-fa.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 ads-fa.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "analytics.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 analytics.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "audio2.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 audio2.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "b.scorecardresearch.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 b.scorecardresearch.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "bounceexchange.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 bounceexchange.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "bs.serving-sys.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 bs.serving-sys.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "content.bitsontherun.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 content.bitsontherun.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "core.insightexpressai.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 core.insightexpressai.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "crashdump.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 crashdump.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "d2gi7ultltnc2u.cloudfront.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 d2gi7ultltnc2u.cloudfront.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "d3rt1990lpmkn.cloudfront.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 d3rt1990lpmkn.cloudfront.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "desktop.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 desktop.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "ds.serving-sys.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 ds.serving-sys.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "googleads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 googleads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "gtssl2-ocsp.geotrust.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 gtssl2-ocsp.geotrust.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "js.moatads.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 js.moatads.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "log.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 log.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "media-match.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 media-match.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "open.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 open.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pagead46.l.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pagead46.l.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pagead2.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pagead2.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "partner.googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 partner.googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "redirector.gvt1.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 redirector.gvt1.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "s0.2mdn.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 s0.2mdn.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "securepubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 securepubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "spclient.wg.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 spclient.wg.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "tpc.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 tpc.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "v.jwpcdn.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 v.jwpcdn.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "video-ad-stats.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 video-ad-stats.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "weblb-wg.gslb.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 weblb-wg.gslb.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.googletagservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.googletagservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.omaze.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.omaze.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "omaze.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 omaze.com>>%WINDIR%\System32\drivers\etc\hosts
pause
|
|
16-01-2018, 00:35
|
|
sn00pydk
Medlem
|
Indlæg: 6
Registreret: Dec 2017
Omdømme:
0
|
|
RE: Spotify Free reklame hack
er der overhovedet forskel :)
hvis nogen roder med det hack til android vil jeg gerne høre om det
|
|
16-01-2018, 00:42
|
|
Ash
Administrator
|
Indlæg: 2.371
Registreret: Feb 2013
|
|
RE: Spotify Free reklame hack
(16-01-2018, 00:35)sn00pydk Skrev: er der overhovedet forskel :)
Der er en forskel ja. Spotify Free er 160 Kbps og Spotify Premium kan vælge 320 Kbps.
Har man et godt headset og nogle gode øre, kan man nemt høre forskel på 160 Kbps, 320 Kbps og lossless. Prøv denne test: https://www.theverge.com/2017/4/5/151683...i-fi-tidal
Jeg fik alle rigtigt 2 gange i streg (den randomizer rækkefølgen hver gang): https://i.imgur.com/2aIISED.png
yolo
|
|
20-01-2018, 14:09
|
|
showbizz
Medlem
|
Indlæg: 4
Registreret: Dec 2017
Omdømme:
0
|
|
RE: Spotify Free reklame hack
Nu er jeg ikke den store mester i kodning på dette plan.
Er det bare at copy paste alt koden ind i en bat fil og afvikle den eller hvordan bruger man scriptet. ??
(15-01-2018, 00:47)Lrsen Skrev: Hey,
Jeg fandt et trick gennem reddit som forklarer hvordan man kunne blokere Spotify i at få adgang til sine reklame ressourcer. Tricket fungere ved at redirecte de requests som Spotify laver til adressen 0.0.0.0 hvor der ikke ligger nogle reklame ressourcer. Og Spotify er kodet sådan at det vil fortsætte med at afspille musik, hvis det ikke kan opnå adgang til reklame materiale.
Tricket fungere både til Mac, Linux og Windows men kræver lidt tilpasning i koden, da det er sat op til Windows på nuværende tidspunkt. Kan muligvis tilpasses Android også, men kræver vist root adgang.
Håber det kan bruges.
Kode: @echo
title Spotify-noad
:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" (
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system"
) ELSE (
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
)
REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )
:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"
"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B
:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------
REM --> Adding lines to hosts file.
:ADD
SET NEWLINE=^& echo.
ECHO # Spotify exemptions
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "securepubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 securepubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "adclick.g.doublecklick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 adclick.g.doublecklick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "adeventtracker.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 adeventtracker.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "ads-fa.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 ads-fa.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "analytics.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 analytics.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "audio2.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 audio2.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "b.scorecardresearch.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 b.scorecardresearch.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "bounceexchange.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 bounceexchange.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "bs.serving-sys.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 bs.serving-sys.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "content.bitsontherun.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 content.bitsontherun.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "core.insightexpressai.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 core.insightexpressai.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "crashdump.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 crashdump.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "d2gi7ultltnc2u.cloudfront.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 d2gi7ultltnc2u.cloudfront.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "d3rt1990lpmkn.cloudfront.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 d3rt1990lpmkn.cloudfront.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "desktop.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 desktop.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "ds.serving-sys.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 ds.serving-sys.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "googleads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 googleads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "gtssl2-ocsp.geotrust.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 gtssl2-ocsp.geotrust.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "js.moatads.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 js.moatads.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "log.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 log.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "media-match.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 media-match.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "open.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 open.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pagead46.l.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pagead46.l.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pagead2.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pagead2.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "partner.googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 partner.googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "pubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 pubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "redirector.gvt1.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 redirector.gvt1.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "s0.2mdn.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 s0.2mdn.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "securepubads.g.doubleclick.net" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 securepubads.g.doubleclick.net>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "spclient.wg.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 spclient.wg.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "tpc.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 tpc.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "v.jwpcdn.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 v.jwpcdn.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "video-ad-stats.googlesyndication.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 video-ad-stats.googlesyndication.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "weblb-wg.gslb.spotify.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 weblb-wg.gslb.spotify.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.googleadservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.googleadservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.googletagservices.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.googletagservices.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "www.omaze.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 www.omaze.com>>%WINDIR%\System32\drivers\etc\hosts
FIND /C /I "omaze.com" %WINDIR%\system32\drivers\etc\hosts
IF %ERRORLEVEL% NEQ 0 ECHO %NEWLINE%^0.0.0.0 omaze.com>>%WINDIR%\System32\drivers\etc\hosts
pause
|
|
24-01-2018, 19:29
|
|
Klinto75m
Medlem
|
Indlæg: 48
Registreret: Mar 2015
Omdømme:
0
|
|
RE: Spotify Free reklame hack
nice lille workaround. Hvis det ikke var fordi jeg allerede har spotify family til 25kr pr mand. Ville det klart prøves. Men synes ikke det kan betale sig.
U don't have to beat the best, to be the best!
|
|
25-01-2018, 09:27
|
|
s0x
VIP bruger
|
Indlæg: 272
Registreret: Apr 2013
Omdømme:
20
|
|
RE: Spotify Free reklame hack
(16-01-2018, 00:35)sn00pydk Skrev: er der overhovedet forskel :)
hvis nogen roder med det hack til android vil jeg gerne høre om det
Hvis du har en bruger på DB, ved jeg at android hacket ligger derinde ;)
...trolling nets since 2013
|
|
25-01-2018, 10:11
(Denne besked var sidst ændret: 25-01-2018, 16:30 af kul987.)
|
|
kul987
Medlem
|
Indlæg: 3
Registreret: Jan 2018
Omdømme:
0
|
|
RE: Spotify Free reklame hack
Ved du om det kræver root af tlf. (Gør det jo nok)
Jeg kører nu på 4. år på en patchet apk fil, som virker på root eller non root. Har brugt den på forskellige modeller og android versioner.
Har virket helt som den skulle. Dog har jeg på det seneste set (hørt) at der engang i mellem (ikke fast interval) kommer ca10-15 sek reklame musik, så kan være jeg skal på jagt efter en ny version af denne apk.
Ja den sidste var til dig @s0x men ved ikke hvorfor mit svar med "citat" ikke kom med .
|
|
|
User(s) browsing this thread: 1 Gæst(er)