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

Vita Tricks

Open discussions on programming specifically for the PS Vita.
Forum rules
Forum rule Nº 15 is strictly enforced in this subforum.
Post Reply
User avatar
Dmitry Work
Posts: 4
Joined: Sun Aug 14, 2016 1:32 pm
Contact:

Vita Tricks

Post by Dmitry Work » Wed Aug 17, 2016 8:46 pm

Hi! Several days ago i try henkaku - it impressive. But some month before i try some tricks with my Vita.
So i just want to talk about it :-)
1st trick in browser type "about:" whithout cquoters. Go forward and type data:text/html,<html><form enctype="multipart/form-data" method="post"><p><input type="file" name="f"> <input type="submit" value="Send"></p>
</form> <br><script type="text/javascript"> document.write("Hellow World!");</script>. So, if U use payload.js just load it from photo folder. :twisted:
2-nd trick use nginx-1.9.10 as proxy, edit psp2-updatelist.xml to download any firmware to Ur vita. I'll download and apply PSVita OFW 3.50 (pre) YES it possible, but it dosn't work coz it in virtual memmory only .
nginx config (or SKFU Pr0xy with similar config):

Code: Select all

worker_processes 1;

error_log logs/error.log;

events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
server {
listen 8080 default; //set port
access_log logs/proxy.log;
server_tokens off;
location /update/psp2/list/ru/psp2-updatelist.xml {
alias ./Vitafiles/psp2-updatelist.xml; //place modified  x:\path\to\nginx\Vitafiles\psp2-updatelist.xml correct ver=3.62  :lol: 
}

location / {
resolver 192.168.0.1;
proxy_pass http://$host;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
}
May be it help someone :-)
3-d using vitashell: find folder ci/dont_remeber_file_name.dat after connecting to psn. Here write request to psn with session id and psvita fw version
P.S. 2-nd trick i try with 3.55 fw, now i haven't ps vita (upgrade fw to 6.61) pup2-update.xml correrct fw file size ! or error message come :mrgreen:
Advertising

Post Reply

Return to “Programming and Security”