caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Re: Tell this guy
       [not found] <15817.18502.351507.868156@swan.psy.cmu.edu>
@ 2002-11-06 17:01 ` John Langford
  0 siblings, 0 replies; only message in thread
From: John Langford @ 2002-11-06 17:01 UTC (permalink / raw)
  To: FranklinChen, caml-list, alan.schmitt

>That's what I was afraid of ... So on to the next question: is it
>possible to use pseudy-ttys with caml ? Or should I start thinking about
>reimplementing the telnet client protocol ...

I'm not sure if this is helpful, but I once wanted to play games with
the telnet protocol and did it in ocaml.  

-John

(* 
A telnet server which asks for certain information from the client and does 
nothing else.  It doesn't work for most clients nowadays.
originally written by jcl@cs.cmu.edu 
released under the GPL.
*)

let log x = let res = Unix.system ("logger -t pseudologin \""^x^"\"") in ()

let ip = ref ""
let set_ip x = log x;ip := x

let proto = ref ""
let set_proto x = log x;proto := x

let speclist = ["-ip", Arg.String set_ip,"ip";
		"-proto", Arg.String set_proto,"protocol";
	       ]


let rec read execute =
  let i = String.make 1 (char_of_int (input_byte stdin)) in
  execute i;
  if i = "\013" then ""
  else i^(read execute)

let interpret string len = 
  for i = 0 to len-1 do
    match string.[i] with
      '\255' -> print_string "IAC "
    | '\254' -> print_string "DONT "
    | '\253' -> print_string "DO "
    | '\252' -> print_string "WONT "
    | '\251' -> print_string "WILL "
    | '\250' -> print_string "SB "
    | '\249' -> print_string "GA "
    | '\248' -> print_string "EL "
    | '\247' -> print_string "EC "
    | '\246' -> print_string "AYT "
    | '\245' -> print_string "AO "
    | '\244' -> print_string "IP "
    | '\243' -> print_string "BRK "
    | '\242' -> print_string "DM "
    | '\241' -> print_string "NOP "
    | '\240' -> print_string "SE "
    | '\000' -> print_string "NUL/IS/VAR "
    | '\001' -> print_string "ECHO/SEND "
    | '\003' -> print_string "SGA "
    | '\005' -> print_string "STATUS "
    | '\006' -> print_string "TIMING "
    | '\010' -> print_string "LF "
    | '\013' -> print_string "CR "
    | '\007' -> print_string "BEL "
    | '\008' -> print_string "BS "
    | '\009' -> print_string "HT "
    | '\011' -> print_string "VT "
    | '\012' -> print_string "FF "
    | '\024' -> print_string "TERMINAL_TYPE "
    | '\031' -> print_string "WINDOW_SIZE "
    | '\032' -> print_string "TERMINAL_SPEED "
    | '\033' -> print_string "REMOTE_FLOW_CONTROL "
    | '\035' -> print_string "LINE_MODE "
    | '\036' -> print_string "ENVIRON "
    | x -> print_char x
  done

let get_environ string = 
  let big_regexp = Str.regexp "USER\000\(.*\)[\001\|\003]SHELL\000\(.*\)[\001\|\003]DISPLAY\000\(.*\)\255" in
  let match_pos = Str.search_forward big_regexp string 0 in
  let user = Str.matched_group 1 string
  and shell = Str.matched_group 2 string
  and display = Str.matched_group 3 string in
  (user,shell,display)
       
let _ =
  Arg.parse speclist log "";
  let command = String.create 3 in
  String.set command 0 (char_of_int 255);
  String.set command 1 (char_of_int 251);
  String.set command 2 (char_of_int 1);  
  print_string command;
  
  let slurp_string = String.create 10000 in
  let strlen = String.length slurp_string in
  (* IAC DO ENVIRON *)
  print_string "\255\253\036"; 
  let slurp = input stdin slurp_string 0 strlen in
  (* IAC SB ENVIRON SEND VAR IAC SE *) 
  print_string ("\255\250\036\001\000USER\000SHELL\000DISPLAY"^"\255\240"); 
  print_string "\n Tunneling to topscale.nsa.gov.";
  print_string "\010\013\tverifying forward host authentication";
  flush stdout;
  Unix.sleep 1;
  print_string "\010\013\tverifying source host";
  flush stdout;
  Unix.sleep 1;
  let slurp = input stdin slurp_string 0 strlen in
(*  log ("login: "^(String.escaped (String.sub slurp_string 0 slurp)));
  interpret slurp_string slurp;flush stdout;*)
  begin try 
    let user,shell,display = get_environ slurp_string in
    let ret = Unix.system 
	("logger -t pseudologin \"env: "^user^" "^shell^" "^display^"\"") in
    print_string ("\010\013\taccessing "^ !ip);
    flush stdout;
    Unix.sleep 4;
    print_string ("\010\013\tretrieving /etc/passwd entry for user "^user^"");
    flush stdout;
    Unix.sleep 1;
    print_string ("\010\013\t/etc/passwd indicates preferred shell is "^shell);
    flush stdout;
    print_string ("\010\013\tguest account for user "^user^" created with shell "^shell);
    flush stdout;
  with
    Not_found -> print_string ("\010\013\tinserting "^ !ip^" into DB-ECHLN-NORTHAM");
      ; end;
  Unix.sleep 1;
  print_string ("\010\013topscale.nsa.gov login: ");
  flush stdout;
  let id = read (fun x -> print_string x; flush stdout) in
  let output = "logger -t pseudologin \"login: "^(String.escaped id)^"\"" in
(*  print_string output;print_newline(); flush stdout;*)
  let res = Unix.system output in
  print_string "\010password: ";
  flush stdout;
  let password = read (fun x -> ()) in
  print_string "\010\013login failed\010\013";
  flush stdout;
  let res = Unix.system ("logger -t pseudologin \"password: "^(String.escaped password)^"\"") in
  exit 0
    
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-11-06 21:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <15817.18502.351507.868156@swan.psy.cmu.edu>
2002-11-06 17:01 ` [Caml-list] Re: Tell this guy John Langford

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).