Recent content by vetzki

  1. V

    PS3 Official Update v4.90 is Live! Official CFW/HFW Released!

    new ps3 system update (4.91) today
  2. V

    Python

    no, currently this cannnot not be archived, as you want first to skip 16 bytes and then skip 8 bytes if chunk size is 16 bytes and you skip first 16 bytes (os 16) then there nothing left to extract to get the green output (minus the first line as this is currently not possible) you would use...
  3. V

    Python

    this should already be possibe by changing -es / --extract-size e.g. $ ./py_simple_extract_data_chuncks_from_file.py -i some_file -cs 100 -es 96 --offset 0 chunk 0 - 100 (no 1) saved to out chunk 100 - 200 (no 2) saved to out chunk 200 - 300 (no 3) saved to out chunk 300 - 400 (no 4) saved to...
  4. V

    Python

    Sorry, didnt understand at first that you want 1 output file (from all the chunks), this shouldn't be difficult to adjust. I can fix the script tomorrow edit: this should write the chunks to one file instead of multiple #!/usr/bin/python3 import os, argparse def create_parser(): parser...
  5. V

    Python

    something like this should work #!/usr/bin/python3 import os, argparse def create_parser(): parser = argparse.ArgumentParser() parser.add_argument("-i","--input-file",help="specify input file",required=True) parser.add_argument("-o","--output-file",help="specify output file base...
  6. V

    Python

    this is how I understood the question but not sure if this is correct. Also, what I dont know is: is it one larger file (e.g 23520 bytes) which contains mutliple images which needs to be extracted or are there multiple files with same or different size ?
  7. V

    Python

    cant you just use something like e.g. INPUT_FILE="2352.bin" OUTPUT_FILE="2336.bin" with open(OUTPUT_FILE,"wb") as fn: in_file=open(INPUT_FILE,"rb") # skip first 16 bytes in_file.seek(16) # read next 2336 bytes chunk = in_file.read(2336) fn.write(chunk) in_file.close()
  8. V

    is psn on ps3 still supported ?

    Yes, PSN still works. You probably have to test yourself if a game is still working as there are a lot of games and to list all of them is probably impossible (or ask for specific titles).
  9. V

    PS3 webMAN MOD - General Information Thread

    I've encountered several issues, not sure whats causing this (I installed the lite version first time): - first of all, i cant switch between lite and normal version, L1+R1+Triangle unloads webman instead of switching versions (instead of L2+L3+R3) edit: used controller is original sony ps3 -...
  10. V

    PS3 webMAN MOD - General Information Thread

    thanks. I can confirm that ext4 is also supported
  11. V

    PS3 webMAN MOD - General Information Thread

    Sorry to post my question here, but I cant create a new thread because of this error "Your content can not be submitted. This is likely because your content is spam-like or contains inappropriate elements. Please change your content or try again later. If you still have problems, please contact...
  12. V

    Is this another scam?

    Imo, problem is, anyone could claim they forked before you add the license. On the other side, is it really relevant? As you would have to sue someone if you think he/she violated the license edit: one thing I forgot, maybe you're right and better add one, else maybe someone could fork, add one...
  13. V

    PS3 PS3Xploit Flash Writer (4.90 HFW)

    regarding local server, cant you just use as simple python http server ? like e.g. #!/usr/bin/env python3 # -*- coding: utf-8 -*- import http.server as hs import socket frmt={ "BOLD":'\033[1m', "ENDF":'\033[0m' } PORT=12345 # if /etc/hosts contains a entry for hostname, the...
  14. V

    fully delete irisman, webman, multiman, etc??

    can't you just uninstall irisman if this is causing the problem? On the other side, the filename.iso.ntfs error seems weird or did you really name the file something.iso.ntfs ? I personally use irisman without issues, but I use ext4 filesystem (with my crappy usb thumb drive). I also tried with...
  15. V

    PS3 Official Update v4.90 is Live! Official CFW/HFW Released!

    I'm in the same boat, didn't had a ps3 until 3-4 weeks ago. To answer you question, no, if you disabled the automatic update service it wont update.
Back
Top