Skip to content

Instantly share code, notes, and snippets.

@marcussacana
marcussacana / Main.cs
Created January 13, 2017 15:43
Criminal Girls Extract/Repacker
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace CriminalGirlsLib {
public static class PS3FileSystem {
public static File[] Open(Stream Packget) {
BinaryReader Reader = new BinaryReader(Packget);
@marcussacana
marcussacana / Program.cs
Last active March 23, 2016 03:20
Run a Process and dected if he crash
using System.Management; //need add the reference to your project...
using System.Windows.Forms; //need add the reference to your project...
public class Program {
public void Main(string[] args) {
if (args.Length != 0)
if (args[0] == "crash") {
PerformOverflow();
return;
}