Web Hosting Talk







View Full Version : Just tried CodeLifter and love it


projo
01-10-2001, 01:12 AM
I like to study other people's work for the educational value. Until now I have done this under the limitations of "view source." (I also use WebBuddy to grab sites for off-line study with HomeSite.)

Well I tried the CodeLifter demo, just purchased a copy and really like it.

I make this post to share my enthusiasm and to bring the SW to the attention of other low-level types.

However I will add that I have not used CodeLifter enough to actually make a recommendation but the $20- program sure has promise.

Gary

jh
01-13-2001, 10:40 PM
where can this codelifter be found? Tried download.com and tucows can't find it.

BC
01-13-2001, 11:34 PM
Not surprisingly enough.....

http://www.codelifter.com

Please inform etLux should you feel it is of use ;)

projo
01-14-2001, 01:23 AM
Hi jh,
I would be interested in any other software you run across that might be useful. I am not into reverse-engineering or any form of software modification but long ago discovered that some of the most cutting-edge technology is not on the book selves.

Gary

Spider John
01-14-2001, 01:53 PM
Originally posted by BC
Not surprisingly enough.....

http://www.codelifter.com

Please inform etLux should you feel it is of use ;)

I thought we weren't supposed to encourage him. :)

kunal
01-14-2001, 01:59 PM
I just saw it. And I was sure impresent. I must say, goat men can really do some programing :)

jh
01-14-2001, 09:17 PM
blah!! this is just a very basic tcp/ip application, even I can pull out something like that in a matter of minutes.

kunal
01-14-2001, 11:09 PM
Well you can, but you dint :) Thats the difference :)

jh
01-15-2001, 03:26 AM
Yeah true, but why would I waste my time to write a program if I can simply disable javascript and view the source, or click the menu View->Source?

kunal
01-15-2001, 03:33 AM
Coz its easier to use the program? :)

Seriously.. think of it.. the trouble is just at the begining when you are writing the program. But once its ready, it makes life much easier :)

razor
01-21-2001, 11:34 PM
will it work with dynamic content such as php?

kunal
01-22-2001, 01:18 AM
No it wont razor. Php is server side language, meaning, it gets executed before it reaches the cleint's computer. On the other Java Script, is a cleint side langauge. It gets executed on the cleints computer.

There is no way of getting the code from a server side executing file.

MattF
01-28-2001, 09:45 AM
how can you disable javascript in IE???

kunal
01-28-2001, 11:45 AM
Originally posted by MattF
how can you disable javascript in IE???

Tools --> Internet Options --> Advanced. Disable Javascript.

TheWingThing
02-04-2001, 06:03 PM
Kunal,
Does codelifter get you the code even if the script is in a external .js file?

Wing.

kunal
02-05-2001, 02:37 AM
Originally posted by TheWingThing
Kunal,
Does codelifter get you the code even if the script is in a external .js file?

Wing.


Never tried that. But I dun think it will work. Because all this does is, get the source of the page, and filter out everything but the stuff between the <Java Script> Tags.

SI-Chris
02-05-2001, 06:48 AM
For those of you with PHP4:

<?php
$url="www.webhostingtalk.com";
$page="showthread.php?threadid=4579";
print "<html><body><pre>";
$fp=fsockopen ($url, 80);
fputs ($fp, "GET /$page HTTP/1.1\r\n");
fputs ($fp, "Host: $url\r\n");
fputs ($fp, "Connection: close\r\n\r\n");
print htmlentities(fread($fp, 100000));
print "</pre></body></html>";
?>

Put that in an empty text file, name it whatever.php, and upload it to your server. You can change the values for $url and $page to whatever you want ($page can be empty if you want the default page). This will even show you the HTTP headers, so you can see what kind of server the site is using. :D