|
| Network (in)Security Interesting hacks and cracks. Info on firewalls, TCP/IP, encryption, networks, and security. The ins and outs of the phone system, caller services, how things work, what's illegal and what's not, cellular phones, beepers, telephony legislation, the PUC, ISDN, taps, who's listening, and switches. Talking about phones, hacking systems, technical advice, and such is completely LEGAL in the United States -- it's covered by the First Amendment. What's illegal is conspiracy to commit a crime. So if you say something like "Meet me at 2am so we can crack a can" or "I changed my cell phone's number myself" you are criminally liable. Stating "You can crack a can by doing thus-and-so" or "If you wanted to change a cell phone's number, you could do it like so" is perfectly OK. Posting passwords, calling card numbers, or credit card numbers is forbidden on this network. Posting such info will get you booted off the net. |

2007-07-19, 01:29
|
|
|
VERY simple question: browser history
I'm gonna write a simple VB program to delete all my internet history files, and I was wonderin if you guys would tell me the locations of all the places it saves files of interest to, i know cookies, temporary internet files, where else? Thanks
|

2007-07-19, 02:32
|
|
Regular
|
|
01123581321345589144233377
|
|
Re: VERY simple question: browser history
Be easier to make a batch file with the command
del C:\...\Cookies\*.txt
del C:\...\Temporary internet files\*.*
Syntax and shit:
http://www.microsoft.com/resources/d....mspx?mfr=true
WIth vb, you will have to have to say something like
Shell ("cmd.exe", del C:\...\Cookies\*.txt)
I would go with a batch file if I were you.
VB looks nice with its fancy buttons and all, but batches work.
as for internet history, temp and cookies are all i can think of....
Last edited by 23 : 2007-07-19 at 02:51.
|

2007-07-19, 02:45
|
|
Regular
|
|
I live in cat town.
|
|
Re: VERY simple question: browser history
I'm going to go with 23 on this one, it's like writing a hello world program in C++
Code:
#include <iostream>
using namespace std;
int main() {
cout << "Hello, world!";
return 0;
}
when you can just use batch:
Code:
@echo off
echo Hello, world!
|

2007-07-19, 14:50
|
|
|
Re: VERY simple question: browser history
Keep in mind that you need to overwrite the data to be secure.
__________________
†Jesus†
|

2007-07-19, 15:40
|
|
|
Re: VERY simple question: browser history
Quote:
Originally Posted by jesus_is_my_homeboy69
Keep in mind that you need to overwrite the data to be secure.
__________________
†Jesus†
|
Mmmmhmmm
So, I think something like this would work out well
@echo off
:deletes
del C:\...\Cookies\*.txt
del C:\...\Temporary internet files\*.*
:write
start %0
goto write
|

2007-07-19, 15:47
|
|
|
Re: VERY simple question: browser history
Quote:
Originally Posted by O RLY
Mmmmhmmm
So, I think something like this would work out well
@echo off
:deletes
del C:\...\Cookies\*.txt
del C:\...\Temporary internet files\*.*
:write
start %0
goto write
|
Get ff, and clear private info.
|

2007-07-20, 01:19
|
|
Regular
|
|
Australia
|
|
Re: VERY simple question: browser history
Quote:
Originally Posted by Glasgowsweeman
Get ff, and clear private info.
|
Does that overwrite the data before being deleted?
|

2007-07-20, 03:18
|
|
Regular
|
|
01123581321345589144233377
|
|
Re: VERY simple question: browser history
^
No, it clears stuff like usernames. Cookies are still in the cookie folder.
|

2007-07-20, 11:12
|
|
|
Re: VERY simple question: browser history
Quote:
Originally Posted by 23
^
No, it clears stuff like usernames. Cookies are still in the cookie folder.
|
I know  .
It says it deletes them all 
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT. The time now is 21:27.
|
|