Advertising (This ad goes away for registered users. You can Login or Register)

Regarding PS TV whitelist bypass

Open discussions on programming specifically for the PS Vita.
Forum rules
Forum rule Nº 15 is strictly enforced in this subforum.
wildthing202
Posts: 4
Joined: Tue Jul 07, 2015 10:03 am

Re: Regarding PS TV whitelist bypass

Post by wildthing202 » Thu Sep 24, 2015 4:07 pm

http://hackinformer.com/forum/thread-475.html

The method is finally out though I still can't get rebirth:1 to work. Let me know how to get this working.
Advertising

mr.gas
Guru
Posts: 163
Joined: Sat Apr 05, 2014 6:35 pm
Location: YEMEN

Re: Regarding PS TV whitelist bypass

Post by mr.gas » Thu Sep 24, 2015 4:31 pm

just set the time by using Internet
it's in settings then date and time
Advertising

Follow
Posts: 6
Joined: Thu Sep 24, 2015 4:43 pm

Re: Regarding PS TV whitelist bypass

Post by Follow » Thu Sep 24, 2015 4:47 pm

hey @mr.gas i have same problem.

Game: hyperdimesion Neptunia Rebirth 1 (PCSE00443)
Current PSTV Firmware: 3.36

You need to write the exception of the game in some other .dat?

Thanks for release :)

mr.gas
Guru
Posts: 163
Joined: Sat Apr 05, 2014 6:35 pm
Location: YEMEN

Re: Regarding PS TV whitelist bypass

Post by mr.gas » Thu Sep 24, 2015 4:50 pm

the new games has another compatibility check in app.db

Follow
Posts: 6
Joined: Thu Sep 24, 2015 4:43 pm

Re: Regarding PS TV whitelist bypass

Post by Follow » Thu Sep 24, 2015 5:03 pm

You can explain or indicate which app.db table? sorry I'm trying to learn ...

mr.gas
Guru
Posts: 163
Joined: Sat Apr 05, 2014 6:35 pm
Location: YEMEN

Re: Regarding PS TV whitelist bypass

Post by mr.gas » Thu Sep 24, 2015 5:07 pm

i really don't remember the key
but u can change the category of the game to gdb instead of gd or gdp
.
u will find it in tbl_appinfo

Follow
Posts: 6
Joined: Thu Sep 24, 2015 4:43 pm

Re: Regarding PS TV whitelist bypass

Post by Follow » Thu Sep 24, 2015 5:39 pm

tried ... however it not worked.
the standard it was "gp" and was changing and sending pro PSTV, but none worked.
I do not know if could be related to the key or something I did wrong ...

Image

mr.gas
Guru
Posts: 163
Joined: Sat Apr 05, 2014 6:35 pm
Location: YEMEN

Re: Regarding PS TV whitelist bypass

Post by mr.gas » Thu Sep 24, 2015 5:46 pm

it's because the game is cartridge ..
what about other games?

User avatar
tomtomdu80
Buffer Overflow
Posts: 113
Joined: Tue Nov 20, 2012 6:39 pm
Location: France

Re: Regarding PS TV whitelist bypass

Post by tomtomdu80 » Thu Sep 24, 2015 5:49 pm

The triggers to add are these :

Code: Select all

CREATE TRIGGER CHANGE_CATEGORY_GPC AFTER INSERT ON tbl_appinfo
WHEN new.val LIKE 'gpc'
BEGIN
UPDATE tbl_appinfo SET val='gdb' WHERE key='566916785' and titleid=new.titleid;
END;
CREATE TRIGGER CHANGE_CATEGORY_GP AFTER INSERT ON tbl_appinfo
WHEN new.val LIKE 'gp'
BEGIN
UPDATE tbl_appinfo SET val='gdb' WHERE key='566916785' and titleid=new.titleid;
END;
CREATE TRIGGER CHANGE_CATEGORY_GDC AFTER INSERT ON tbl_appinfo
WHEN new.val LIKE 'gdc'
BEGIN
UPDATE tbl_appinfo SET val='gdb' WHERE key='566916785' and titleid=new.titleid;
END;
CREATE TRIGGER CHANGE_CATEGORY_GD AFTER INSERT ON tbl_appinfo
WHEN new.val LIKE 'gd'
BEGIN
UPDATE tbl_appinfo SET val='gdb' WHERE key='566916785' and titleid=new.titleid;
END;
(commands from mr.gas)
Just execute the SQL commands through SQLite browser

Follow
Posts: 6
Joined: Thu Sep 24, 2015 4:43 pm

Re: Regarding PS TV whitelist bypass

Post by Follow » Thu Sep 24, 2015 5:53 pm

cartridges do not work?
And other cartridges are running (before already worked), digital I have not tested.
I'm sorry if that's my mistake, I was hoping to run on TV.

Post Reply

Return to “Programming and Security”