原创 ubuntu下安裝 kali linux 滲透工具包

    相信用過linux系統的盆友都聽說過kali linux 它是一個非常好的用於滲透測試的Linux發行版。但是如何在ubuntu下使用kali linux 的滲透工具嘞!LionSec開發出了一個python工具,叫做Katool

原创 c 語言 命令行參數

<span style="font-size:32px;">void main(int argc,char*argv[]) { printf("%d\n",argc); for(int i=0;i<argc;i+

原创 ubuntu 下 Aircrack 破解wifi密碼(wpa/wpa2)

前提:1、安裝有Kali Linux的計算機或裝有 Aircrack 的ubuntu           2、支持監控模式的網卡,筆記本電腦一般都支持           3、字典文件           4、耐心、細心 開始:    

原创 apache 虛擬主機 的一些配置

#在下面配置自己的虛擬機 <VirtualHost 127.0.0.1:80>     #網站文件根目錄     DocumentRoot "D:/Myweb/Workspace"     #設置首頁面     DirectoryInd

原创 括號檢測

#include <stdio.h> #include <stdlib.h> #include <malloc.h> #define LIST_INIT_SIZE 100 #define ADD_SIZE 10 #define OK 1

原创 unbantu 系統下 運用phpMailer

1.下載phpMailer https://yunpan.cn/cSbdkN5bqdQQh (提取碼:ef37) 2.找出class.phpmailer.php和class.smtp.php文件放到你的項目的文件夾下 3.先上代碼然後在解

原创 js 下div 拖動效果

</pre><pre name="code" class="html"><!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>拖動</title>

原创 DTD

DTD <!ELEMENTclass (stu+,班長?)> <!ELEMENTstu (name,sex,age)> <!ELEMENTname (#PCDATA)> <!ELEMENTsex (#PCDATA)> <!ELEMENT

原创 background-position 屬性設置背景圖像的起始位置

 轉載自http://www.cnblogs.com/huazaizai/archive/2010/11/03/1867907.html 語法:  background-position : length || length  back

原创 header 函數

//定義編碼 header( 'Content-Type:text/html;charset=utf-8 '); //Atom header('Content-type: application/atom+xml'); //CSS hea

原创 進制轉換

<span style="font-size:24px;">#include <stdio.h> int fetc(int val,int val2){ if(val<val2){ return val; }else{ ret

原创 鏈式隊列

<span style="font-size:24px;">/* 鏈式隊列 */ #include <stdio.h> #include <stdlib.h> #include <malloc.h> #define OK true #d

原创 c 數據結構 定長串

/* * 串的定長順序存儲實現(定長數組) * char 實際上是1字節整型,所以它可以存放長度不超過1字節 數值範圍 的int型的常量。 * 數值範圍 16進制 0 到 0xFF. 超出此範圍的整型常量 的 高位字節 會 自

原创 求最大公約數和最小公倍數

<span style="font-size:24px;">/* 輸入兩個數 求最大公約數和最小公倍數 */ #include <stdio.h> int getGongyue(int i,int j); int main(void){

原创 順序隊列

<span style="font-size:24px;">#include <stdio.h> #include <stdlib.h> #include <malloc.h> #define OK 1 #define ERROR -1