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
# Для всех перечисленных тут уязвимостей имеются фиксы (или будут сделаны в ближайшее время) | |
CarpentersBlocks: | |
1) com.carpentersblocks.network.PacketActivateBlock | |
1.1) Открытие GUI некоторых блоков в приватах | |
IC2NuclearControl: | |
1) shedar.mods.ic2.nuclearcontrol.network.message.PacketClientColor | |
shedar.mods.ic2.nuclearcontrol.network.message.PacketClientDisplaySettings | |
shedar.mods.ic2.nuclearcontrol.network.message.PacketClientRangeTrigger |
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
Реквизиты: | |
Qiwi: +79608624930 | |
Яндекс.Деньги: 410011923274761 | |
Skype: sk2000sk1 | |
Telegram: gamerforEA | |
Discord: gamerforEA#8924 | |
Зеркало на GitHub Gist: https://gist.github.com/gamerforEA/6c4a77255b95ba4354cc26758d3633da |
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
#include <climits> | |
#include <cstring> | |
#define MIN_RADIX 2 | |
#define MAX_RADIX 36 | |
int digitVal(char ch, int radix) { | |
if (radix < MIN_RADIX || radix > MAX_RADIX) | |
return -1; | |
if (ch >= 'A' && ch <= 'Z' && ch < radix + 'A' - 10) |