본문 바로가기

Dev/ASP

[ASP] CAPTCHA 스팸방지 코드

반응형

검색해보면 돌아다니는 CAPTCHA 관련 코드가 많은데 ASP나 닷넷에서 사용 할 거라면 요놈이 편하고 깔끔하니 좋은 것 같다.

다운로드 사이트 : http://www.tipstricks.org/ 

예제 : http://www.goodkiss.co.kr/sample/captchaSample.asp

'#Editable consts and variables
dim Bitmap(25,130) '[Height,Width]
CodeLength = 4 'Secure code length (Max:8)
const CodeType = 0 '0[Random numbers], 1[Random chars and numbers], 2[Wordlist]
const CharTracking = 2 'Set the tracking between two characters
const RndTopMargin = False 'Randomize top margin every character
const NoiseEffect = 0 '0[none], 1[sketch], 2[random lines of text color], 3[Random lines of background color over text (Recommed maximum NoiseLine=4)]
const NoiseLine = 6 'Low values make easy OCR, high values decrease readability
const MinLineLength = 7 'Minimum noise line length
const SessionName = "ASPCAPTCHA" 'Where store your secure code

captcha.asp 파일에서 해당 부분의 윗부분들의 옵션을 조정해주면 코드길이나 모양등등 조정이 가능하니 참고하길 바란다.

귀찮다면 다운로드 사이트에서 조건에 맞게 다운로드 받아서 하면 됨.


tipstricks_captcha.zip


반응형