[완료]tcpdump의 출력을 php에서 처리 하고자 합니다.

kkume의 이미지

터미널에서 tcpdump 의 출력을 PHP로 처리 하려고 합니다.

tcpdump -p -i eth0 -s 0 -l -w - dst port 3306 | ./query_view.php

query_view.php에서

<?
while (1)
{
$buf = trim(fgets(STDIN));
if ($buf)
{
print $buf . "\n";
}
}
?>

위와 같은 간단한 코드에서 $buf에 있는 string만 뽑아 낼려면 어떻게 해야 하는지요?

아래는 print $buf 출력 내용입니다.
---------------------------------------------------------------
,▒▒LuAA}▒9PSE3▒@▒▒Dp▒▒@p▒▒▒
▒e$▒▒ݘ▒P@▒:COMMIT,▒▒LKK}▒9PSE=▒@▒▒6p▒▒@p▒▒▒
▒e▒ݘ▒P@C▒SET AUTOCOMMIT=1,▒▒L▒l
<<}▒9PSE(▒@▒▒Jp▒▒@p▒▒▒
@▒▒▒p▒▒@p▒▒▒▒L▒MM}▒9PSE?
▒e%▒ݘ▒P@:▒select * from area_▒▒L▒BB}▒9PSE4▒p▒▒@p▒▒▒!
▒|>▒ b▒▒_▒▒Lm<<}▒9PSE(▒p▒▒@p▒▒▒!
▒|>"▒!P@)]▒_▒▒L▒ww}▒9PSEi▒▒p▒▒@p▒▒▒!
▒|>"▒]P@P▒=▒▒icm$▒jw;▒&▒g3▒X▒▒o▒wicm_▒▒L▒II}▒9PSE;@▒▒▒p▒▒@p▒▒▒!
▒|>R"▒hP@▒▒SET NAMES utf8_▒▒L0▒▒}▒9PSEu@▒Ӿp▒▒@p▒▒▒!
▒|>e"▒sP@▒9ISELECT TABLE_SCHEMA, CAST(NULL AS CHAR(1)), TABLE_NAME, INDEX_NAME, CASE WHEN NON_UNIQUE = 0 THEN INDEX_NAME ELSE NULL END, INDEX_NAME='PRIMARY', NON_UNIQUE=0, 1=1 FROM INFORMATION_SCHEMA.STATISTICS WHERE (TABLE_SCHEMA = 'icm' OR (1=2)) AND (1=1 OR 1=2) AND (TABLE_NAME = 'area' OR (1=2)) GROUP BY 1, 2, 3 ,4 ORDER BY 1, 2, 3, 4_▒▒L▒BB}▒9PSE4▒▒p▒▒@p▒▒▒1
▒+X|▒ ▒▒▒_▒▒L▒<<}▒9PSE(p▒▒@p▒▒▒1
▒+X}"▒▒▒P@) ▒_▒▒Lww}▒9PSEi▒▒p▒▒@p▒▒▒1
!0Z▒"▒▒P@}P=▒▒icm
▒▒u▒|▒i{/icm_▒▒II}▒9PSE;@▒▒▒p▒▒@p▒▒▒1
▒+X▒"▒▒P@T▒SET NAMES utf8_▒▒LYff}▒9PSEX@▒▒▒p▒▒@p▒▒▒1
▒+X▒"▒▒(P@@,SELECT TABLE_SCHEMA, CAST(NULL AS CHAR(1)), TABLE_NAME, INDEX_NAME, COLUMN_NAME, SEQ_IN_INDEX, COLLATION='A' FROM INFORMATION_SCHEMA.STATISTICS WHERE (TABLE_SCHEMA = 'icm' OR (1=2)) AND (1=1 OR 1=2) AND (TABLE_NAME = 'area' OR (1=2)) AND (INDEX_NAME = 'A' OR (1=1)) ORDER BY 1, 2, 3, 4, SEQ_IN_INDEX_▒▒LA<<}▒9PSE-@▒▒▒p▒▒@p▒▒▒1
▒+Z"▒▒▒P?▒_▒▒L<<}▒9PSE-▒▒▒p▒▒@p▒▒▒!
▒|?▒"▒JP?▒X:_▒▒L4<<}▒9PSE(▒p▒▒@p▒▒▒1
▒+Z"▒▒▒P?▒▒_▒▒L"<<}▒9PSE(▒p▒▒@p▒▒▒!
▒|?▒"▒JP?▒ZA_▒▒L<<}▒9PSE(▒▒p▒▒@p▒▒▒1
▒+Z"▒▒▒P?▒▒_▒▒Lc<<}▒9PSE(▒▒p▒▒@p▒▒▒!
▒|?▒"▒KP?▒Z@_▒▒L▒Q
<<}▒9PSE( @▒▒▒p▒▒@p▒▒▒
▒e%4▒ݝwP>߀Lg▒▒L▒dKK}▒9PSE=*@▒▒▒p▒▒@p▒▒▒
▒e%4▒ݝwP>▒@▒SET AUTOCOMMIT=0g▒▒L▒gEE}▒9PSE7+@▒▒▒p▒▒@p▒▒▒
▒e%I▒ݝ▒P>▒(▒
BEGIN WORKg▒▒Lk▒▒}▒9PSE▒,@▒Ԍp▒▒@p▒▒▒
▒e%X▒ݝ▒P>▒▒▒aupdate `area` set
`aname` = '외국123'
where
`acode` = '78' and
`aname` = '외국111'
PuTTYPuTTYPuTTYPuTTYPuTTY
-------------------------------------------------------------

bushi의 이미지

tcpdump -p -i eth0 -s 0 -l -w - dst port 3306 | strings -e S | ./query_view.php

strings 의 도움말 읽어보시고,
특히 -e 옵션에 대한 항목 주의하셔서 본인에게 맞는 encoding 을 사용하세요.

OTL

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.