Cause:
Failure of validation mechanisms
Where:
https://gitgud.io/BondageProjects/Bondage-College/-/blob/master/BondageClub/Scripts/Validation.js#L369
https://gitgud.io/BondageProjects/Bondage-College/-/blob/master/BondageClub/Scripts/Inventory.js#L1295
https://gitgud.io/BondageProjects/Bondage-College/-/blob/master/BondageClub/Scripts/Validation.js#L792
Effect:
Locks(owners, lovers) can be removed by strangers
Why:
The InventoryGetLock doesn't check 'lock' effect. So if you removed the effect only, newLock will still be True.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.List; | |
public class CSV { | |
public static String[] splitLine(String line) { | |
List<String> partsList = new ArrayList<>(); | |
char[] chars = line.toCharArray(); | |
boolean inQuotes = false; | |
StringBuilder currentPart = new StringBuilder(); | |
int idx = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
一份奇怪的笔记: | |
如何迅速制备食品级卡波姆凝胶: | |
卡波姆凝胶的典型浓度是0.5% w/w | |
也就是说500ml的只需要2.5g...成本甚至不到一分钱 | |
典型的售价却在10r上下,甚至达不到食品级 | |
是一种性能不错的水基润滑剂(是你想的那种) | |
方法1:加热重组法 | |
【!必须使用TDS<10的去离子水!】 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package github.huzpsb.nm.sample; | |
import github.huzpsb.nm.tools.Hacker; | |
import org.objectweb.asm.*; | |
import java.lang.instrument.ClassFileTransformer; | |
import java.lang.instrument.IllegalClassFormatException; | |
import java.lang.instrument.Instrumentation; | |
import java.security.ProtectionDomain; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name AwMazing | |
// @description Aw's script for BC map mode | |
// @version Full_0 | |
// @namespace awaqwq_awmazing | |
// @match *://*/*BondageClub* | |
// @grant GM_registerMenuCommand | |
// ==/UserScript== | |
(function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Changes may be made near 0,0 to create a spawn without further notice. | |
00010203040506070809101112131415161718192021222324252627282930313233343536 | |
00010203040506070809101112131415161718192021222324252627282930313233343536 | |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | |
________________XX______________________XX__XX__________________________XX | |
XX__XXXXXX__XX__XX__XXXXXXXXXXXXXXXXXX__XX__XX__XXXXXXXXXXXXXX__XXXXXX__XX | |
XX__XX__XX__XX__XX__XX______XX__________XX______XX______XX__XX__XX______XX | |
XX__XX__XX__XX__XX__XX__XXXXXX__XXXXXXXXXX__XXXXXX__XX__XX__XX__XXXXXXXXXX | |
XX__XX__XX__XX______XX______XX______XX______XX______XX______XX__________XX | |
XX__XX__XX__XXXXXXXXXXXXXX__XXXXXX__XX__XXXXXXXXXX__XXXXXXXXXXXXXXXXXX__XX |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fetch('https://huzpsb.eu.org/pevt.js#' + new Date().getTime()).then(response => response.text()).then(code => { | |
eval(code); | |
statusMap = new Map() | |
TriggerTrap = function (p) { | |
InventoryWear(p, 'LeatherArmbinder', 'ItemArms', '#202020', 114514) | |
InventoryWear(p, 'Irish8Cuffs', 'ItemFeet', '#202020', 114514) | |
InventoryWear(p, 'TheDisplayFrame', 'ItemDevices', '#202020', 114514) | |
ChatRoomCharacterUpdate(p) | |
} |
Code:
package cf.huzpsb.proxycheck;
import java.io.*;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.Socket;
import java.net.SocketAddress;
import java.util.Scanner;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedOutputStream; | |
import java.io.FileOutputStream; | |
import java.io.PrintWriter; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.atomic.AtomicInteger; | |
public class Prime { | |
private static volatile ArrayList<Integer> foundPrimes = new ArrayList<>(); |