亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? precomp.y

?? 一個非常實用的密碼破解源碼。該實例代碼采用c語言編寫
?? Y
字號:
/*--------------------------------------------------------*//* Copyright (c) PSW-soft 1996                            *//*                                                        *//* File:     PRECOMP.Y                                    *//*                                                        *//* Project:  Password Cracking Library                    *//* Version:  2.0c                                         *//*                                                        *//* Author:   Pavel Semjanov                               *//* Company:  PSW-soft                                     *//*                                                        *//* Comment:  Precompiler for password definition file     *//*           on YACC                                      *//*                                                        *//* Create:   06.08.1996 21:39:20                          *//* Update:   20.07.1999 20:06:16                          *//*                                                        *//* Revision: 2.0c   20.07.1999 20:06:16 check of modifier *//*           quantity added                               *//* Revision: 2.0b   04.05.1999 13:47:34 .c(1) not defined *//*           bug fixed                                    *//* Revision: 1.1   26.08.1996 14:20:54 Special charset    *//*           added (implemented in YAAC 0.95).            *//* Revision: 1.0   06.08.1996 21:39:20 Initial revision   *//*           (implemented in cRARk 1.5)                   *//*--------------------------------------------------------*/%{#include <stdio.h>#include <stdlib.h>#include <string.h>#include "maindef.h"#include "yaccdef.h"#include "pcl.h"#include "modif.h"str_func *f_comp;int aster_comp;boolean _used_chars, defined_used_chars;boolean in_permutation;int i;char buf[10];int national;%}%union {  char          *set;  int            num;  str_func      func;};%token <num> NUMBER%token F_EOF%token WORD USER_WORD S_SPECIAL%token TBREAK%token <set> QSTRING%token <set> LETTER NULL_CHAR%token <set> ANY_LETTER S_EUPPER S_ELOWER S_DIGITS S_SYMBOLS S_RUPPER S_RLOWER S_USER S_USEDCHARS S_VOWELS%token <func> W_TRUNC W_UPPER W_LOWER W_COOL W_CONSONANT W_REVERSE W_CONVERT W_DUPLICATE W_USER%token <func> W_CUT%type <set>  set sets setl_def%type <func> modificator word modif1 modificator1 modif1_def modif%type <num>  perm_num modif_num%type <num>  set_def word_def modif_def%%/* Whole PDF file */task: { defined_main_dict = defined_user_dict = defined_used_chars = FALSE; national = 0; }      definition      TBREAK      { line++;        for (i = 0; i <= 6; i++) {          strsset (defined_sets[i]); /* for example, spanish */          strscat (U_QUOT, defined_sets[i]);        }        definition_done(); }      implementationdefinition:   { init_set(); }             lines_deflines_def:  /*line_def '\n' { line++; } */          | lines_def line_def '\n' { line++; }line_def:   word_def '=' QSTRING { if ($1 == WORD) open_dict_file ($3);                                   else open_user_file ($3); }          | set_def { i = $1; } '=' set_or_sets_def           { if (national == 3) {              national = 0;              make_upper_lower (U_RLOWER, U_RUPPER, 1);              make_upper_lower (U_RUPPER, U_RLOWER, 0);             }           }          | modif_def '=' QSTRING           {            for (i = 0; i <= 6; i++) strscat (U_QUOT, defined_sets[i]);            make_convert ($3, $1);           }          |word_def:     WORD        { defined_main_dict = TRUE; $$ = WORD; }            | USER_WORD   { defined_user_dict = TRUE; $$ = USER_WORD; }modif_def : '?' modif1_def modif_num { $$ = $3; }modif1_def:  W_CONVERTset_or_sets_def:  '['  { memset (defined_sets[i], 0, 256); }                       sets_def ']'sets_def:  sets_def setl_def           { strcat (defined_sets[i], $2);  /* not strscat !!! */           }            |setl_def:   LETTER    { $$ = $1; }          | S_EUPPER  { $$ = U_EUPPER; }          | S_ELOWER  { $$ = U_ELOWER; }          | S_DIGITS  { $$ = U_DIGITS; }          | S_SYMBOLS { $$ = U_SPECIAL;}          | S_RUPPER  { $$ = U_RUPPER; }          | S_RLOWER  { $$ = U_RLOWER; }          | S_USER    { $$ = U_USER;   }          | S_VOWELS  { $$ = U_VOWELS; }          | '?'       { yyerror ("\'?\' not allowed");   }          | NULL_CHAR { yyerror ("\'\\0\' not allowed"); }set_def:      S_EUPPER  { $$ = 1; }            | S_ELOWER  { $$ = 0; }            | S_DIGITS  { $$ = 2; }            | S_SYMBOLS { $$ = 3; }            | S_RUPPER  { $$ = 5; national |= 1; }            | S_RLOWER  { $$ = 4; national |= 2; }            | S_USER    { $$ = 6; }            | S_USEDCHARS {$$ = 8; defined_used_chars = TRUE;}            | S_VOWELS  { $$ = 9; }implementation:        { i_comp = 0; aster_comp = -1;         _used_chars = in_permutation = FALSE; }         lines F_EOF { YYACCEPT; }lines:   line '\n' { line ++; }        | line F_EOF        | lines line '\n' { line ++; }        | lines line F_EOF/* 笮捎纖 納遺嗽勺 */line:     { _user_dict = _main_dict = FALSE; }         wordsets          { if (aster_comp != -1 && aster_comp != i_comp)               yyerror ("\'*\' must be at the end");            process_line ();            i_comp = 0;            /*  _main_dict = _user_dict = */ _used_chars = FALSE;            aster_comp = -1;  }           |wordsets :    wordset            | wordsets wordsetwordset:      word_modif            | set_or_sets            | permutation            | asteriskword_modif:   word  { if (i_comp == MAX_PASSWORD) yyerror ("Max password length exceeded");                      if (component[i_comp] == NULL)                        if ((component[i_comp] = (char *) malloc (256)) == NULL) yyerror ("Out of memory");                      component[i_comp][0] = C_MODIF;                      f_comp = (str_func *) &component[i_comp][1];                      *f_comp++ = $1; }              modif { f_comp->fnc = NULL; /* make_wordset() uses it */                      if (_used_chars)                        strscat (USED_CHARS, make_wordset (component[i_comp]));                      i_comp++; }modif:        modif1            | { $$.fnc = NULL; }modif1:       modificator1        { *f_comp++ = $1; }            | modif1 modificator1 { if ((char *)f_comp - component[i_comp] > 256 - sizeof (str_func))                                      yyerror ("Too many modifiers");                                    else *f_comp++ = $2; }word:         WORD        { if (!defined_main_dict) yyerror ("Main dictionary not defined");                            _main_dict = TRUE; $$.fnc = &get_dict_word; }            | USER_WORD   { if (!defined_user_dict) yyerror ("User dictionary not defined");                            _user_dict = TRUE; $$.fnc = &get_user_word; }            | S_SPECIAL NUMBER  { $$.fnc = &get_special; $$.param = $2; }modificator1: modificator modif_num              { $$.param = $2;                if ($2 < 0 && !($1.fnc == &strrtoupper || $1.fnc == &strrtolower ||                                $1.fnc == &strcut)) yyerror ("Invalid parameter");                 if ($1.fnc == &strconvert && convert_tables[$2+2] == NULL) {                   sprintf (buf, ".c(%d)", $2);                   yymessage ("Error", "not defined", buf);                 }              }modificator:  W_TRUNC     { $$.fnc = &strcut;      }            | W_UPPER     { $$.fnc = &strrtoupper; }            | W_LOWER     { $$.fnc = &strrtolower; }            | W_COOL      { $$.fnc = &strrtocool;  }            | W_CONSONANT { $$.fnc = &strrshrink;  }            | W_CONVERT   { $$.fnc = &strconvert;  }            | W_REVERSE   { $$.fnc = &strrevm;     }            | W_DUPLICATE { $$.fnc = &strduplicate; }            | W_USER      { yyerror ("User-defined modifiers not supported yet"); }modif_num:      NUMBER { $$ = $1;}            |        { $$ = 0; }set_or_sets: { if (i_comp == MAX_PASSWORD) yyerror ("Max password length exceeded");               if (component[i_comp] == NULL)                 if ((component[i_comp] = (char *) malloc (256)) == NULL) yyerror ("Out of memory");               component[i_comp][0] = C_SET; }               set_or_sets1set_or_sets1:  set { strcpy (component[i_comp++] + 1, $1); }            | '['  { strcpy (component[i_comp]+1, ""); }               sets ']' { i_comp++; }sets:        set  { strscat (component[i_comp]+1, $1); }          |  sets set  { strscat (component[i_comp]+1, $2); }set:          S_EUPPER  { $$ = U_EUPPER; if (_used_chars) strscat (USED_CHARS, $$); }            | S_ELOWER  { $$ = U_ELOWER; if (_used_chars) strscat (USED_CHARS, $$);}            | S_DIGITS  { $$ = U_DIGITS; if (_used_chars) strscat (USED_CHARS, $$);}            | S_SYMBOLS { $$ = U_SPECIAL;if (_used_chars) strscat (USED_CHARS, $$); }            | S_RUPPER  { $$ = U_RUPPER; if (_used_chars) strscat (USED_CHARS, $$);}            | S_RLOWER  { $$ = U_RLOWER; if (_used_chars) strscat (USED_CHARS, $$);}            | S_USER    { $$ = U_USER;   if (_used_chars) strscat (USED_CHARS, $$);}            | '?'       { $$ = U_QUOT;                          if (_used_chars) strscat (USED_CHARS, $$); }            | LETTER    { $$ = $1; test_char($$); if (_used_chars) strscat (USED_CHARS, wordtoset ($1)); }            | NULL_CHAR { component[i_comp][0] |= C_NULL; $$ = ""; }permutation:  '{'       { if (i_comp != 0) yyerror ("'{' is not a first char");                          in_permutation = TRUE;                          if (defined_used_chars == FALSE) {                            strcpy (USED_CHARS, ""); _used_chars = TRUE; }                        }            | '}'       { if (! in_permutation) yyerror ("Unexpected \'}\'");                          if (i_comp == MAX_PASSWORD) yyerror ("Max password length exceeded");                         /* if (i_comp == 0) yyerror ("No chars to permute"); */                          _used_chars = FALSE;                          in_permutation = FALSE;                        }              perm_num {                         if (component[i_comp] == NULL)                           if ((component[i_comp] = (char *) malloc (256)) == NULL) yyerror ("Out of memory");                         component[i_comp][0] = C_PERMUT;                         component[i_comp][1] = $3;                         i_comp++;                        }perm_num:      NUMBER { $$ = $1;}            |        { $$ = 1; }asterisk:    '*'         { if (i_comp == 0 || (! isset (component[i_comp-1])) ) yyerror ("Illegal use of \'*\'");                           component[i_comp-1][0] |= C_ASTER;                           aster_comp = i_comp; }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区三区的| 亚洲精品成人在线| 欧美三级三级三级爽爽爽| 大白屁股一区二区视频| 国产精华液一区二区三区| 激情小说亚洲一区| 国产原创一区二区三区| 精品影院一区二区久久久| 七七婷婷婷婷精品国产| 日本不卡一区二区三区| 男女性色大片免费观看一区二区 | 亚洲精品一区在线观看| 99久久精品久久久久久清纯| 国产成人免费视频| 国产成人av电影免费在线观看| 国产精品主播直播| 99精品偷自拍| 欧美日韩国产影片| 日韩欧美123| 国产日韩一级二级三级| 国产精品麻豆视频| 亚洲综合网站在线观看| 天堂一区二区在线| 精品一区二区免费视频| 国产精品123区| 色狠狠一区二区| 欧美一区二区不卡视频| www一区二区| 亚洲日本va在线观看| 亚洲v中文字幕| 国产日韩av一区二区| 日韩欧美色综合网站| 欧美一区二区三区免费大片| 亚洲一级片在线观看| 麻豆精品国产传媒mv男同| 久久99久久久久| 91视频在线看| 亚洲精品在线三区| 亚洲电影欧美电影有声小说| 久久99蜜桃精品| 在线观看免费亚洲| 久久久国产精华| 午夜精品免费在线| jvid福利写真一区二区三区| 欧美一区二区三区人| 午夜欧美电影在线观看| 国产乱一区二区| 欧美三级蜜桃2在线观看| 久久美女艺术照精彩视频福利播放 | 日韩精品三区四区| 成人精品免费看| 6080国产精品一区二区| 中文字幕一区二区三区在线不卡 | 亚洲大型综合色站| 国产精品一品二品| 日韩三级免费观看| 一区二区视频在线看| 国产精品一二三四五| 在线播放视频一区| 一区二区欧美精品| 波多野结衣中文字幕一区 | 国产成人99久久亚洲综合精品| 久久91精品久久久久久秒播| 亚洲综合网站在线观看| 色av一区二区| 欧美麻豆精品久久久久久| 国产精品每日更新| 丁香婷婷综合五月| 久久久久99精品国产片| 久久精品国产**网站演员| 欧美巨大另类极品videosbest | 国产精品视频麻豆| 国产一区二区三区不卡在线观看| 欧美日韩激情一区二区三区| 亚洲美女视频在线| 91亚洲精品一区二区乱码| 亚洲欧美aⅴ...| 欧美日韩国产天堂| 日韩欧美二区三区| 亚洲一区影音先锋| 91久久免费观看| 一区二区三区在线观看网站| 91麻豆文化传媒在线观看| 国产精品久久久久久福利一牛影视 | 高清不卡在线观看| 亚洲国产激情av| av综合在线播放| 亚洲欧美怡红院| 99热国产精品| 亚洲欧美一区二区三区国产精品| 91天堂素人约啪| 一级特黄大欧美久久久| 在线成人高清不卡| 久久精品国产免费| 欧美国产成人在线| 在线亚洲免费视频| 奇米影视一区二区三区小说| 日韩美一区二区三区| 国产高清久久久| 中文字幕一区在线观看视频| 欧美性做爰猛烈叫床潮| 日本系列欧美系列| 日本一区二区三区在线不卡| 99久久国产综合精品色伊 | 麻豆国产欧美日韩综合精品二区| ww久久中文字幕| av一区二区三区在线| 性感美女极品91精品| 精品国产一区二区精华| 91无套直看片红桃| 秋霞午夜av一区二区三区| 国产亚洲精品bt天堂精选| 在线视频国产一区| 国产制服丝袜一区| 亚洲美女屁股眼交| 日韩视频免费观看高清完整版| 国产不卡一区视频| 亚洲第四色夜色| 国产精品三级视频| 欧美一区二区在线不卡| 波多野结衣在线一区| 免费的成人av| 一区二区在线观看视频在线观看| 日韩美女视频一区二区在线观看| fc2成人免费人成在线观看播放| 日韩精品免费视频人成| 国产精品久久久爽爽爽麻豆色哟哟| 欧美日韩高清影院| 不卡的av中国片| 国产伦精品一区二区三区免费 | 欧美国产精品久久| 欧美一卡二卡在线| 欧美在线999| 99久久伊人久久99| 国产剧情一区二区| 麻豆国产欧美日韩综合精品二区| 亚洲精品国产精华液| 国产日韩精品一区二区三区 | 国产伦精品一区二区三区视频青涩| 亚洲精品免费在线观看| 国产女主播在线一区二区| 日韩欧美国产系列| 3751色影院一区二区三区| 91香蕉视频污| 91免费视频网| 91小视频在线| 91小视频免费看| av福利精品导航| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 日精品一区二区| 亚洲一区二区欧美| 一区二区三区成人在线视频 | 91国产免费看| 色哟哟精品一区| 91在线视频免费观看| 91伊人久久大香线蕉| 成人性生交大片免费看在线播放| 国产一区二区三区香蕉| 九色porny丨国产精品| 久久不见久久见免费视频1| 美女脱光内衣内裤视频久久影院| 免费观看91视频大全| 美女视频免费一区| 狠狠色狠狠色综合| 成人精品免费看| 91猫先生在线| 欧美日韩成人激情| 7777女厕盗摄久久久| 91精品免费观看| 精品国产三级电影在线观看| 久久久不卡网国产精品二区| 久久精品一区二区三区四区| 欧美国产日韩a欧美在线观看| 一区在线中文字幕| 亚洲欧美一区二区三区国产精品| 亚洲国产精品一区二区久久| 日韩av中文字幕一区二区| 久久精品99国产精品| 成人免费看视频| 在线精品观看国产| 日韩三级视频在线看| 欧美激情中文字幕一区二区| 综合av第一页| 天堂久久一区二区三区| 激情文学综合网| 色先锋资源久久综合| 91精品国产一区二区三区香蕉| 久久精品无码一区二区三区| 亚洲久本草在线中文字幕| 蜜桃精品视频在线观看| youjizz久久| 欧美一区二区三区免费| 国产精品免费av| 日韩国产欧美在线观看| 99精品视频在线观看| 欧美一区二区免费视频| 综合欧美亚洲日本| 极品少妇一区二区三区精品视频 | 午夜欧美电影在线观看| 国产一区二区三区久久久|