고자질 하고 갑니다. 정보
고자질 하고 갑니다.본문
안녕하세요. 소박하게 음악커뮤티와 종합커뮤니티를 운영하고 있는 그누보드 뉴비입니다.
새벽에 메크로인지 바이럴을 꾀 많이 하고 갔습니다. 한 페이지가 넘네요.
지하철에서 유튜브 보고 출근완료했는데 난리가 났었네요.
메리크리스마스 그누보드 감사합니다.
추천
3
3
댓글 8개

자동 프로그램을 사용했나보네요. 신기하네요.
@하늘뚱
그런것 같아요

한 아이디에서 동일글이 짧은시간안에 재차 중복 등록시도하면 차단되는 기능이 있었던거 같은데...
아닌가?
(⊙_⊙)?
@크론이 어떻게요?

@라온헤윰 그누Ai 한테, "그냥 그렇게 자~알~~~ 되게 해줘~" 하면, 리자님께 텔레파시가 가지 않을까 상상해 봅니다. ㅋ
^^* 가족분들과 따뜻한 연말연시 보내셔요~~~
( ̄▽ ̄)" Mery ChristMAS~
@크론이 Mery ChristMAS~
감사합니다.

자동으로 글 작성 프로그램으로 돌리면 누구나 간단하죠..
!-->
<?php
set_time_limit(0); // 실행 시간을 무제한으로 설정
// 그누보드 로그인 정보 및 게시판 설정
$login_url = "https://yourdomain.com/bbs/login_check.php"; // 로그인 처리 URL
$post_url = "https://yourdomain.com/bbs/write_update.php"; // 게시글 작성 URL
$board_id = "board_id"; // 게시판 ID
$user_id = "your_username"; // 사용자 ID
$user_pw = "your_password"; // 사용자 비밀번호
// 로그인 함수
function login($login_url, $user_id, $user_pw) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $login_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "mb_id=$user_id&mb_password=$user_pw");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
// 게시글 작성 함수
function postArticle($post_url, $board_id, $title, $content) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "bo_table=$board_id&wr_subject=$title&wr_content=$content");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookie.txt');
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
// 로그인 시도
login($login_url, $user_id, $user_pw);
// 1분 간격으로 게시글 작성
while (true) {
$title = "안녕하세요";
$content = "감사합니다";
postArticle($post_url, $board_id, $title, $content);
echo "게시글 작성 완료: $title\n";
sleep(60); // 1분 대기
}
?>
@카이루 신기하네요
감사합니다.