Difference between revisions of "User:Jontow"

From WTFwiki
Jump to navigation Jump to search
(add freeswitch notes, mark trac done)
(27 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
== Contact Details ==
 +
 
* Name:  Jonathan Towne
 
* Name:  Jonathan Towne
 
* Email: jontow AT hijacked DOT us
 
* Email: jontow AT hijacked DOT us
 
* Profession:  UNIX System/Network Administrator; involving Network Security, Development, and other.
 
* Profession:  UNIX System/Network Administrator; involving Network Security, Development, and other.
 
 
* [http://gate.secure-bsd.be/~jontow/resume.txt Resumé]
 
 
 
 
  
  
 
== TODO ==
 
== TODO ==
  
* Rebuild '''romeo.int''' : move realtime config, continue setup
+
=== Deployments ===
* Rebuild '''vm.slic.com''' : update OS, asterisk, zaptel, libpri, others.
 
 
 
* Rebuild '''skd.bsd.st''' jail
 
 
 
* Deploy asterisk+AgentUI bits on '''rhodes'''
 
 
 
* Upgrade apache20, mysql41 on '''vertex'''
 
 
 
* '''DONE''' : Watch argus logrotate on '''hydra''', '''hork''', and '''secure'''
 
 
 
* '''DONE''' : (disabled snort) Tune snort rules (autocat) on '''hydra'''
 
 
 
* '''DONE''' : milo pcap madness (UN/PW)
 
 
 
* auto-hack milo's POP3 accounts, return usables, discard others.
 
 
 
* '''DONE''' : (Andrew) generate usable user list (including forwards, etc) from ~eagle/miloreg/2006-08-21-milo-userlist.txt
 
 
 
* postfix+pop3+imap research: IP-based virtual hosting
 
 
 
* re-draft security policy
 
 
 
* de-frame bw.slic.com/~mrtg  (php-side-menu/woflbar)
 
 
 
* '''DONE''' : Move '''astrans''' tasks to '''lucid'''
 
 
 
* '''USELESS''' : Watch '''astrans''' for LN test calls.
 
  
* '''DONE''' : Rebuild '''lucid''''s installation of mysql (4 --> 5)
+
=== Misc Code ===
  
* More [http://www.postgresql.org/ postgresql] research
+
=== Research ===
  
* '''DONE''' : Setup [http://trac.edgewall.org/ trac] on '''apex'''
+
=== Scratch Space ===
 +
[[JontowTest]]
  
* Agent framework for [http://www.freeswitch.org/ FreeSwitch]
+
<syntaxhighlight lang="erlang" line>
 +
% -- Note: Part 1 uses ?MATCHSTRING1
 +
%
  
* Queue framework for [http://www.freeswitch.org/ FreeSwitch]
+
-module(day4par).
 +
-export([tc_solve_part1/0, tc_solve_part2/0,
 +
        prof_solve_part1/0, prof_solve_part2/0,
 +
        solve_part1/0, solve_part2/0,
 +
        worker_run/1, foreman_run/3]).
 +
-define(MATCHSTRING1, "00000").
 +
-define(MATCHSTRING2, "000000").
 +
-define(SEED, "iwrupvqb").
 +
-define(WORKERS, 2).
 +
-define(MBOXDEPTH, 5000).
 +
-define(BACKOFFMS, 250).
  
* Documentation for [http://www.freeswitch.org/ FreeSwitch]
+
tc_solve_part1() ->
 +
    timer:tc(fun() -> solve_part1() end).
 +
</syntaxhighlight>

Revision as of 14:43, 1 April 2020

Contact Details

  • Name: Jonathan Towne
  • Email: jontow AT hijacked DOT us
  • Profession: UNIX System/Network Administrator; involving Network Security, Development, and other.


TODO

Deployments

Misc Code

Research

Scratch Space

JontowTest

 1 % -- Note: Part 1 uses ?MATCHSTRING1
 2 %
 3 
 4 -module(day4par).
 5 -export([tc_solve_part1/0, tc_solve_part2/0,
 6          prof_solve_part1/0, prof_solve_part2/0,
 7          solve_part1/0, solve_part2/0,
 8          worker_run/1, foreman_run/3]).
 9 -define(MATCHSTRING1, "00000").
10 -define(MATCHSTRING2, "000000").
11 -define(SEED, "iwrupvqb").
12 -define(WORKERS, 2).
13 -define(MBOXDEPTH, 5000).
14 -define(BACKOFFMS, 250).
15 
16 tc_solve_part1() ->
17     timer:tc(fun() -> solve_part1() end).