1.벅스 ( 월 990 원 노래 무제한 듣기 )

2. TIViewer ( 책 읽는 앱 )

3. Camera360 ( 사진 촬영/보정에 용의 )

4. SeoulBus ( 버스 시간 보기 )

5. ASTRO ( 확장자 변경에 용의 )

6. 카카오 페이지

7. MUNPIA 문피아

8. 바이두

9. 해피포인트카드

10. KB 스타뱅킹

11. Paynow

12. 모바일 티머니

13. i-ONE뱅크

14. 컬처랜드





나머지는 KB뱅킹 앱 설치해서 사용


There are stopped jobs.
root@zetawiki:~# exit
logout
There are stopped jobs.


2016 . 3 . 8 AM 15:00


pwd /usr/local/mysql exit


logout

there are stopped jobs ...

<input type="hidden" name="LGD_ENCODING"  value="UTF-8"> 

<input type="hidden" name="LGD_ENCODING_NOTEURL"  value="UTF-8"> 

<input type="hidden" name="LGD_ENCODING_RETURNURL"  value="UTF-8"> 


어떤 팅 요금제를 쓰는지는 사람마다 다를 겁니다.


일딴 자신의 스마트폰에 깔린 " 모바일 T World " 를 들어갑니다.


여기서 데이터 사용 금액 얼마인지 확인하시고


티스토어(tstore) 앱에서 문화상품권을 구매하세요!


개이득 !!! 이걸 모르고 매월 5000원씩 손해본것만 생각해도 아쉽네요....



네이버 후스콜 – 스팸차단 세계 1위

만 3세 이상
기기와 호환되는 앱입니다.
 


centos 버전 확인

cat /etc/issue.net


아파치 버전 확인

httpd -v


php 버전 확인

php -v

'server > 리눅스' 카테고리의 다른 글

서버 에러 ? There are stopped jobs.  (0) 2016.03.08
리눅스 명령어 모음  (0) 2016.02.24
vi 편집기 명령어  (0) 2016.02.22
출저 : http://gnujava.com/board/article_view.jsp?article_no=7193&menu_cd=16&sch_field=TITLE&idx_notice=NOTICE_FLAG+DESC%2C&board_no=3&sch_word=CAPTCHA

JSP example - Google Recaptcha validation using jquery (AJAX)

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
<%
String remoteip = request.getRemoteAddr();
%>
<!doctype html>
<html>
<head>
<title> Recaptcha validation using jquery ajax </title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="recaptcha_ajax.js"></script>
<script type="text/javascript">
function reloadRecaptcha() {
var publicKey = "your_public_key";
var div = "recap";
Recaptcha.create(publicKey,div,{theme: "white"});
return false;
}
function validate() {
var challenge = Recaptcha.get_challenge();
var response = Recaptcha.get_response();
var remoteip = "<%=remoteip%>";
$.ajax({
type: "POST",
url: "validateRecaptcha.jsp",
async: false,
data: {
remoteip: remoteip,
challenge: challenge,
response: response
},
success: function(resp) {
if(resp == "true") {
document.getElementById("message").innerHTML = "Perfect!";
}
else {
document.getElementById("message").innerHTML = "Incorrect Recaptcha! Please try again!";
reloadRecaptcha();
}
}
});
return false;
}
</script>
</head>
<body onload="return reloadRecaptcha();">
<form method="post" onsubmit="return validate();">
<table>
<tr>
<td colspan="2">
<div id="message" style="color:#ff0000; "></div>
<div id="recap"></div>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Submit">
</td>
</tr>
</table>
</form>
</body>
</html>




sing reCAPTCHA with Java/JSP

Important: This is an old version of reCAPTCHA API. For the latest version, please refer to Version 2.0.

The reCAPTCHA Java Library provides a simple way to place a CAPTCHA on your Java-based website, helping you stop bots from abusing it. The library wraps the reCAPTCHA API.

To use reCAPTCHA with Java/JSP, you can download the reCAPTCHA Java Library here (contributed by Soren) and unzip it. Typically the only thing you'll need is the jar file (recaptcha4j-X.X.X.jar), which you have to copy to a place where it can be loaded by your java application. For example, if you are using Tomcat to run JSP, you may put the jar file in a directory called WEB-INF/lib/.

Quick Start

After you've signed up for your API keys and downloaded the reCAPTCHA Java Library, below are basic instructions for installing reCAPTCHA on your site.

Client Side (How to make the CAPTCHA image show up)

If you want to use the Java plugin to display the reCAPTCHA widget, you'll need to import the appropriate reCAPTCHA classes. In JSP, you would do this by inserting these lines near the top of the file with the form element where the reCAPTCHA widget will be displayed:

    <%@ page import="net.tanesha.recaptcha.ReCaptcha" %>
   
<%@ page import="net.tanesha.recaptcha.ReCaptchaFactory" %>

Then, you need to create an instance of reCAPTCHA:

    ReCaptcha c = ReCaptchaFactory.newReCaptcha("your_public_key", "your_private_key", false);

Finally, the HTML to display the reCAPTCHA widget can be obtained from the following function call:

    c.createRecaptchaHtml(null, null)

So, in JSP your code may look something like this:

    <%@ page import="net.tanesha.recaptcha.ReCaptcha" %>
   
<%@ page import="net.tanesha.recaptcha.ReCaptchaFactory" %>

   
<html>
     
<body>
       
<form action="" method="post">
       
<%
         
ReCaptcha c = ReCaptchaFactory.newReCaptcha("your_public_key", "your_private_key", false);
         
out.print(c.createRecaptchaHtml(null, null));
        %>
       
<input type="submit" value="submit" />
       
</form>
     
</body>
   
</html>

Don't forget to replace your_public_key and your_private_key with your API key values.

Server Side (How to test if the user entered the right answer)

In the application that verifies your form, you'll first need to import the necessary reCAPTCHA classes:

    import net.tanesha.recaptcha.ReCaptchaImpl;
   
import net.tanesha.recaptcha.ReCaptchaResponse;

Next, you need to insert the code that verifies the reCAPTCHA solution entered by the user. The example below (in JSP) shows how this can be done:

    <%@ page import="net.tanesha.recaptcha.ReCaptchaImpl" %>
   
<%@ page import="net.tanesha.recaptcha.ReCaptchaResponse" %>

   
<html>
     
<body>
     
<%
       
String remoteAddr = request.getRemoteAddr();
       
ReCaptchaImpl reCaptcha = new ReCaptchaImpl();
        reCaptcha
.setPrivateKey("your_private_key");

       
String challenge = request.getParameter("recaptcha_challenge_field");
       
String uresponse = request.getParameter("recaptcha_response_field");
       
ReCaptchaResponse reCaptchaResponse = reCaptcha.checkAnswer(remoteAddr, challenge, uresponse);

       
if (reCaptchaResponse.isValid()) {
         
out.print("Answer was entered correctly!");
       
} else {
         
out.print("Answer is wrong");
       
}
      %>
     
</body>
   
</html>


자동가입방지 CAPTCHA 


CAPTCHA(Completely Automated Public Turing test to tell Computers and Humans Apart, 완전 자동화된 사람과 컴퓨터 판별,캡차)는 HIP(Human Interaction Proof) 기술의 일종으로, 어떠한 사용자가 실제 사람인지 컴퓨터 프로그램인지를 구별하기 위해 사용되는 방법이다. 사람은 구별할 수 있지만 컴퓨터는 구별하기 힘들게 의도적으로 비틀거나 덧칠한 그림을 주고 그 그림에 쓰여 있는 내용을 물어보는 방법이 자주 사용된다. 이것은 기존의 텍스트와 이미지를 일그러뜨린 형태로 변형한 후 인식 대상이 변형된 이미지로부터 기존 이미지를 도출해 낼 수 있는지를 확인하는 방식의 테스트이다. 컴퓨터 프로그램이 변형시킨 이미지는 사람이 쉽게 인식 할 수 있지만 컴퓨터 프로그램은 변형된 이미지를 인식하지 못하므로 테스트를 통과하지 못한다면 테스트 대상이 사람이 아님을 판정할 수 있다. 흔히 웹사이트 회원가입을 할 때 뜨는 자동가입방지 프로그램 같은 곳에 쓰인다. (위치백과)


CAPTCHA는 기기가 사람을 대상으로 하는 테스트이므로 사람에 가까운 기기를 대상으로 하는 테스트인 튜링 테스트(Turing test)에서 용어를 따와 리버스 튜링 테스트(Reverse Turing test)라고 부르기도 한다.


다양한 자동가입방지 Open Source들이 있다.

PHP를 응용한 것들은 더 많았지만 Java/JSP를 활용한 CAPTCHA들은 몇가지 안되었다.


1. reCaptcha ( http://www.google.com/recaptcha/intro/index.html )

구글에서 제공해주는 리캡차, 음성지원을 해준다. API Key 신청후 사용해야 함.

 


2. jCaptcha ( http://jcaptcha.sourceforge.net )

오픈소스로 심플한 화면 제공


3. jQuery Real Person ( http://keith-wood.name/realPerson.html )

jQueryr Plugin을 활용, 오픈소스

 


4. SimpleCaptcha http://simplecaptcha.sourceforge.net )

음성, 한글음성 지원, 심플한 UI 제공, 오픈소스

 


출저 : http://gnujava.com/board/article_view.jsp?board_no=11&article_no=5634




원하는 노래들을 앨범에 저장


스마트폰을 켜고 벅스 앱을 실행


내 앨범 들어가서 컴퓨터에서 고른 노래들을 내 핸드폰에 저장


※ 로그인할때 아주 조금 데이터가 든다.


로그인 후 이용 가능

+ Recent posts