快轉到主要內容

DETEKT:檢查電腦是否被安裝間諜程式

·560 字·2 分鐘
Y Cheung
作者
Y Cheung
Blogger, Programer & Traveler.

❗ 該軟體已停止更新,Y Cheung發現github上有個備份的repo: https://github.com/eReader/detekt

看到朋友分享一個叫Detekt 的軟件,據說是用來掃描Windows系統的電腦,看看有沒有被什麼間諜軟件悄悄監控着。官網說明倒是煞有其事,它主要是針對保護人權鬥士、記者、宗教人士等進行RESIST SURVEILLANCE,這同時也是一個python開源項目 。

下載exe文件後用管理員運行,等上很長一段時間就可以看結果了,它會在EXE文件存放目錄中生成一個LOG文件。

Y.CHEUNG的檢查結果如下:

Looks good.

I wasn’t able to identify the presence of any obvious spyware. Please note that this does not necessarily mean your computer is clean. If you have strong suspicion of being targeted, please do seek assistance.

You can find additional instructions at h t t p s :// w w w . r e s i s t s u r v e i l l a n c e . o r g / e m e r g e n c y

顯而易見的是,沒人有興趣監控我的電腦喇~

log記錄:

 12014-11-20 20:12:23,377 - detector - INFO - Starting with process ID 2156
 22014-11-20 20:12:23,391 - detector - INFO - Selected Profile Name: Win7SP1x64
 32014-11-20 20:12:23,397 - detector - INFO - Selected Driver: C:\Users\yukino\AppData\Local\Temp\_MEI60882\drivers\winpmem64.sys
 42014-11-20 20:12:23,398 - detector.service - INFO - Launching service destroyer...
 52014-11-20 20:12:23,398 - detector.service - INFO - Trying to stop the winpmem service...
 62014-11-20 20:12:23,400 - detector.service - INFO - Trying to delete the winpmem service...
 72014-11-20 20:12:23,436 - detector.service - INFO - Trying to start the winpmem service...
 82014-11-20 20:12:23,444 - detector - INFO - Service started
 92014-11-20 20:12:23,444 - detector - INFO - Selected Yara signature file at C:\Users\yukino\AppData\Local\Temp\_MEI60882\rules\signatures.yar
102014-11-20 20:12:23,444 - detector - INFO - Obtaining address space and generating config for volatility
112014-11-20 20:12:24,520 - detector - INFO - Address space: <volatility.plugins.addrspaces.amd64.AMD64PagedMemory object at 0x08E9C4D0>, Base: <volatility.plugins.addrspaces.win32pmem.Win32FileAddressSpace object at 0x081D5AF0>
122014-11-20 20:12:24,520 - detector - INFO - Profile: <volatility.plugins.overlays.windows.win7.Win7SP1x64 object at 0x081D5C30>, DTB: 0x187000
132014-11-20 20:12:24,522 - detector - INFO - Starting yara scanner...
142014-11-20 22:04:17,398 - detector - INFO - Scanning finished
152014-11-20 22:04:17,398 - detector.service - INFO - Trying to stop the winpmem service...
162014-11-20 22:04:17,398 - detector.service - INFO - Trying to delete the winpmem service...
172014-11-20 22:04:17,398 - detector - INFO - Service stopped
182014-11-20 22:04:17,398 - detector - INFO - Analysis finished

相關文章

紀念碑谷通關喇

·436 字·1 分鐘
很久以前在G+上看到有大大推薦《Monument Valley》這個遊戲,好像很好玩的樣子,但因為是付費遊戲(不是不捨花錢,是牆內購買實在太麻煩)就沒有玩。昨天看到亞馬遜限免APP裡有它,馬上下載來玩玩,果然很贊呢!

Wordpress默认相册与文字内容分开显示及定制显示格式

·1319 字·3 分鐘
最近工作上要重新建站,公司有些站点是ASP的,程序老旧经常被黑。因为就是一般的企业展示类站点,就直接用wordpress重建了,页面样式还是用原来的,工作重点就是如何output出跟旧站一样的html结构。得益于这大半年的几个drupal项目,在做的时候思路跟以前不同了,不得不说drupal的核心思维还是很赞很科学的。

什么是Political Community

·501 字·1 分鐘
书的开篇就提到了政治共同体一词,很是不解,显然这是一个基本的概念名词。 经查,政治共同体系Political Community的中译,在台湾则译作“政治社群”,辞典和百科全书里说这个词又称“政治社区”但Y.CHEUNG没有找到这样称呼它的资料。

Wordpress在循环LOOP中获取 post_date 使用自定义日期时间格式

·146 字·1 分鐘
code示例: 1<?php $args = array('numberposts' => '16','category' => '8'); 2 $recent_posts = wp_get_recent_posts( $args, ARRAY_A ); 3 foreach ($recent_posts as $recent) { 4 echo '<li><a href="'. get_permalink($recent["ID"]).'">'.$recent["post_title"].'</a><span class="list-meta">'. mysql2date('Y-m-d', $recent["post_date"]) .'</span></li>'; 5 } 6?> 原本直接用$recent['post_date']输出的是2014-11-11 14:30:24这样的格式,但现在不需要时间的输出,Y.Cheung 只需要输出日期,找了一下用mysql2date函数就可以。