|
|
#371 |
|
Senior Member
![]() Join Date: Jan 2008
Location: Lisbon, Portugal
Posts: 6,682
Likes: 2,087
Liked 2,451 Times in 1,390 Posts
Mentioned: 139 Post(s)
Tagged: 0 Thread(s)
|
yes it was... but yeah was just stating... so people won't be in some kind of illusion... not trying to be an ass.
__________________
<eussNL> judge: ´so why did you torrent 5 million AVI of women moaning´ <eussNL> <TizzyT> i dont judge if it sounds good i listen |
|
|
|
|
Likes: (1) |
|
|
#372 | |
|
Member
![]() Join Date: Jan 2010
Location: Belgium
Posts: 51
Likes: 7
Liked 16 Times in 12 Posts
Mentioned: 9 Post(s)
Tagged: 0 Thread(s)
|
Preparation Start [Target] =>ConsoleReset [Target] =>Scan serial-No [Target] Boot [Target] =>Install Special OS End But getting a bigger picture now To get this running you need something like tinyumbrella Last edited by dcnigma; 11-19-2011 at 09:14 PM. |
|
|
|
|
|
Likes: (1) |
|
|
#373 |
|
Member
![]() Join Date: Aug 2008
Posts: 95
Likes: 2
Liked 9 Times in 6 Posts
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)
|
I was thinking if it is possible to emulate a jig in 3.55 in lv2patcher and on pc emulate in hosts file the sony IP that the program is looking for. We can inject anything you want if you reroute the sony IP to any LAN ip like 192.168.x.x. I don't know if that's possible. I have ti-84 capable programming xD, but I'm a pc techie LOL
|
|
|
|
|
|
#374 | ||
|
Apprentice
Join Date: Jan 2008
Posts: 3
Likes: 1
Liked 6 Times in 2 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
And thank you for commending me on my first post. I've been a member at this site for as long as you have, but I always restrain myself from posting because I don't care to add to the drama or don't have anything constructive to add. Last night was however an exception, because I was a bit drunk =) |
||
|
|
|
|
Likes: (3) |
|
|
#375 | |||
![]() ![]() Join Date: Jan 2008
Posts: 14,668
Likes: 8,398
Liked 14,900 Times in 5,706 Posts
Mentioned: 1383 Post(s)
Tagged: 3 Thread(s)
|
EDIT Any more thread derailment or off topic post, will be dealt with accordingly, you have been warned, especially you Mr Sakariassen... Last edited by GregoryRasputin; 11-20-2011 at 06:28 AM. |
|||
|
|
|
|
Likes: (1) |
|
|
#376 |
|
Apprentice
Join Date: Jan 2008
Posts: 3
Likes: 1
Liked 6 Times in 2 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
Thank you for proving my point =) You can go ahead and ban me now
|
|
|
|
|
|
#377 |
|
Apprentice
Join Date: Nov 2011
Posts: 3
Likes: 0
Liked 5 Times in 2 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
it's all about the .SIG files, isn't it?
[edit] encoding isn't working, I didn't think about it properly.. [edit2] actually I didn't think about it at all, encoding is the same as decoding, it's fixed now.. [edit3] get these noobs out of here [edit4] open the xml in excel, you gotta love the colors! ;-) Code:
#ifdef _WIN32
#define _CRT_SECURE_NO_WARNINGS
#endif
#include <malloc.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
#include <io.h>
#include <fcntl.h>
#endif
#include <string.h>
int sig_crypt(char *buffer, size_t len)
{
char *buffer_end = buffer + len;
while (buffer < buffer_end)
{
if ((*buffer > 0x1f && *buffer < 0x4f) || (*buffer > 0x4f && *buffer < 0x7f))
{
*buffer = 0x9e - *buffer;
}
buffer++;
}
return 0;
}
static void print_usage(void)
{
fprintf(stderr, "Usage: sig_crypt foo.sig > decrypted_foo.xml\n");
fprintf(stderr, " -i '.SIG file' : SIG file to encode/decode\n");
fprintf(stderr, " -h : print this list\n\n");
exit(-1);
}
static void read_cmdline_params(int argc, char *argv[], char *input_filename)
{
int i;
strcpy(input_filename , "");
if (argc == 1)
{
print_usage();
}
for(i = 1; i < argc; i++)
{
if (strcmp("-h", argv[i]) == 0)
{
print_usage();
}
else if (strcmp("-i", argv[i]) == 0)
{
if (i < argc - 1)
{
strcpy(input_filename, argv[++i]);
}
else
{
fprintf(stderr, "ERROR: No SIG input filename was entered!\n\n");
print_usage();
}
}
}
}
int main(int argc, char* argv[])
{
FILE *fd;
char filename[255];
char *buffer;
size_t result, file_size;
read_cmdline_params(argc, argv, filename);
#ifdef _WIN32
_setmode(_fileno(stdout), O_BINARY);
#endif
fd = fopen(filename, "rb");
if (!fd)
{
fprintf(stderr, "File [%s] could not be opened.", filename);
exit(1);
}
fseek(fd, 0, SEEK_END);
file_size = ftell(fd);
rewind(fd);
buffer =(char*) malloc(sizeof(char) * file_size);
if (buffer == NULL)
{
fprintf(stderr, "Out of memory.");
exit(2);
}
result = fread(buffer, 1, file_size, fd);
if (result != file_size)
{
fprintf(stderr, "File [%s] could not be read.", filename);
exit(3);
}
fprintf(stderr, "Encoding/Decoding..\n");
sig_crypt(buffer, file_size);
fwrite(buffer, 1, file_size, stdout);
fclose(fd);
free(buffer);
fprintf(stderr, "Done.\n");
return 0;
}
Last edited by mr_wicked; 11-20-2011 at 07:19 AM. |
|
|
|
|
|
#378 |
|
Member
![]() Join Date: Jul 2011
Posts: 696
Likes: 282
Liked 259 Times in 152 Posts
Mentioned: 88 Post(s)
Tagged: 0 Thread(s)
|
Anybody know if the eEID from a CECHC is smaller than one from a CECH-2101?
|
|
|
|
|
|
#379 |
|
Apprentice
Join Date: Nov 2011
Posts: 7
Likes: 0
Liked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
i hope this doesn't lead to 104 pages of DRAMA
Last edited by Selena85; 11-20-2011 at 08:09 AM. |
|
|
|
|
|
#380 | |
|
Member
![]() Join Date: Nov 2011
Location: Neo Arcadia
Posts: 118
Likes: 48
Liked 27 Times in 21 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
Because math told us something about buffer...I don't remember now. |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|