"Show It Off" thread aka "Strut your Stuff"

Page 99 of 103 FirstFirst ... 4989919293949596979899100101102103 LastLast
Results 1,471 to 1,485 of 1532
  1. #1471
    Yuri-BR#1559 Yuri-BR is offline
    DeveloperRank
    Apr 2013 Join Date
    ☣️❤️Location
    1,040Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    admin panel working :D








  2. #1472
    Apprentice Seco DatLife is offline
    MemberRank
    Dec 2015 Join Date
    human/brainLocation
    17Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    New character test
    ( there are 4 new characters still being developed )

    https://youtu.be/eJOFAQAf-SA

  3. #1473
    My Status --> LukasCCB is offline
    MemberRank
    Apr 2013 Join Date
    CracolandiaLocation
    1,190Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by Yuri-BR View Post
    admin panel working :D

    Nothing hard, only add database webinterface.

    https://pastebin.com/Qk0L0cf6
    Code:
    -- ------------------------------ Table structure for groups_grants-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_grants]') AND type IN ('U'))    DROP TABLE [dbo].[groups_grants]GOCREATE TABLE [dbo].[groups_grants] (  [groupID] int  NOT NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[groups_grants] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_grants-- ----------------------------INSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_find')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'user_check')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'ban_user')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_game_email')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_password')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_manage')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_rename')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'customer_info')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_mod')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_del')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'list_of_banned_users')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'log')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_add')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'unban_user')GO-- ------------------------------ Table structure for groups_users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_users]') AND type IN ('U'))    DROP TABLE [dbo].[groups_users]GOCREATE TABLE [dbo].[groups_users] (  [groupID] int  NOT NULL,  [userID] int  NULL)GOALTER TABLE [dbo].[groups_users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_users-- ----------------------------INSERT INTO [dbo].[groups_users] VALUES (N'1', N'1')GO-- ------------------------------ Table structure for log-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[log]') AND type IN ('U'))    DROP TABLE [dbo].[log]GOCREATE TABLE [dbo].[log] (  [userID] nvarchar(64) COLLATE French_CI_AS  NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL,  [timestamp] nvarchar(64) COLLATE French_CI_AS  NULL,  [userID2] nvarchar(64) COLLATE French_CI_AS  NULL,  [msg] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg2] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg3] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg4] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg5] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL)GOALTER TABLE [dbo].[log] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of log-- ----------------------------INSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-03-30 22:33:46', N'1000002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-03-30 22:42:43', N'1000002', N'test (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-05-26 20:00:29', N'100002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-05-31 15:33:01', N'1004655', N'not reason for banned (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GO-- ------------------------------ Table structure for users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[users]') AND type IN ('U'))    DROP TABLE [dbo].[users]GOCREATE TABLE [dbo].[users] (  [id] int  NOT NULL,  [name] varchar(64) COLLATE French_CI_AS  NULL,  [password] varchar(64) COLLATE French_CI_AS  NULL,  [session] nvarchar(64) COLLATE French_CI_AS  NULL,  [access] nvarchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of users-- ----------------------------INSERT INTO [dbo].[users] VALUES (N'1', N'admin', N'2a1da1e23f38403dbb258359ace90e11', N'5cfbf8833eaa9', N'2019-06-08 15:03:47')GO-- ------------------------------ Primary Key structure for table users-- ----------------------------ALTER TABLE [dbo].[users] ADD CONSTRAINT [PK__users__3213E83F7F60ED59] PRIMARY KEY CLUSTERED ([id])WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  ON [PRIMARY]GO

  4. #1474
    Account Upgraded | Title Enabled! djbadboys38 is offline
    MemberRank
    Aug 2010 Join Date
    TanzanyaLocation
    1,365Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by LukasCCB View Post
    Nothing hard, only add database webinterface.

    https://pastebin.com/Qk0L0cf6
    Code:
    -- ------------------------------ Table structure for groups_grants-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_grants]') AND type IN ('U'))    DROP TABLE [dbo].[groups_grants]GOCREATE TABLE [dbo].[groups_grants] (  [groupID] int  NOT NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[groups_grants] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_grants-- ----------------------------INSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_find')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'user_check')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'ban_user')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_game_email')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_password')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_manage')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_rename')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'customer_info')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_mod')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_del')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'list_of_banned_users')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'log')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_add')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'unban_user')GO-- ------------------------------ Table structure for groups_users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_users]') AND type IN ('U'))    DROP TABLE [dbo].[groups_users]GOCREATE TABLE [dbo].[groups_users] (  [groupID] int  NOT NULL,  [userID] int  NULL)GOALTER TABLE [dbo].[groups_users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_users-- ----------------------------INSERT INTO [dbo].[groups_users] VALUES (N'1', N'1')GO-- ------------------------------ Table structure for log-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[log]') AND type IN ('U'))    DROP TABLE [dbo].[log]GOCREATE TABLE [dbo].[log] (  [userID] nvarchar(64) COLLATE French_CI_AS  NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL,  [timestamp] nvarchar(64) COLLATE French_CI_AS  NULL,  [userID2] nvarchar(64) COLLATE French_CI_AS  NULL,  [msg] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg2] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg3] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg4] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg5] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL)GOALTER TABLE [dbo].[log] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of log-- ----------------------------INSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-03-30 22:33:46', N'1000002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-03-30 22:42:43', N'1000002', N'test (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-05-26 20:00:29', N'100002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-05-31 15:33:01', N'1004655', N'not reason for banned (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GO-- ------------------------------ Table structure for users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[users]') AND type IN ('U'))    DROP TABLE [dbo].[users]GOCREATE TABLE [dbo].[users] (  [id] int  NOT NULL,  [name] varchar(64) COLLATE French_CI_AS  NULL,  [password] varchar(64) COLLATE French_CI_AS  NULL,  [session] nvarchar(64) COLLATE French_CI_AS  NULL,  [access] nvarchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of users-- ----------------------------INSERT INTO [dbo].[users] VALUES (N'1', N'admin', N'2a1da1e23f38403dbb258359ace90e11', N'5cfbf8833eaa9', N'2019-06-08 15:03:47')GO-- ------------------------------ Primary Key structure for table users-- ----------------------------ALTER TABLE [dbo].[users] ADD CONSTRAINT [PK__users__3213E83F7F60ED59] PRIMARY KEY CLUSTERED ([id])WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  ON [PRIMARY]GO
    where can i found web php files? or .aspx?

  5. #1475
    My Status --> LukasCCB is offline
    MemberRank
    Apr 2013 Join Date
    CracolandiaLocation
    1,190Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by djbadboys38 View Post
    where can i found web php files? or .aspx?
    Check your folder -> \server\src\Scripts\thewarz.com-account\admin
    or
    https://mega.nz/#!JqphjATA!lW-2WB59Lv-vYSFhG773eoVldd9gBmYrHQBkdyxQLus

  6. #1476
    Senior Software Engineer AdminWarZ is online now
    MemberRank
    Apr 2018 Join Date
    AnonymousLocation
    372Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    What is this brother.
    Quote Originally Posted by LukasCCB View Post
    Check your folder -> \server\src\Scripts\thewarz.com-account\admin
    or
    https://mega.nz/#!JqphjATA!lW-2WB59Lv-vYSFhG773eoVldd9gBmYrHQBkdyxQLus

  7. #1477
    My Status --> LukasCCB is offline
    MemberRank
    Apr 2013 Join Date
    CracolandiaLocation
    1,190Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by AdminWarZ View Post
    What is this brother.
    is virus. it allow you spy nasa

  8. #1478
    Senior Software Engineer AdminWarZ is online now
    MemberRank
    Apr 2018 Join Date
    AnonymousLocation
    372Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    I'm not kidding brother, I don't understand why you blocked me on Discord.
    Quote Originally Posted by LukasCCB View Post
    is virus. it allow you spy nasa

  9. #1479
    Yuri-BR#1559 Yuri-BR is offline
    DeveloperRank
    Apr 2013 Join Date
    ☣️❤️Location
    1,040Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by LukasCCB View Post
    Nothing hard, only add database webinterface.

    https://pastebin.com/Qk0L0cf6
    Code:
    -- ------------------------------ Table structure for groups_grants-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_grants]') AND type IN ('U'))    DROP TABLE [dbo].[groups_grants]GOCREATE TABLE [dbo].[groups_grants] (  [groupID] int  NOT NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[groups_grants] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_grants-- ----------------------------INSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_find')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'user_check')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'ban_user')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_game_email')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'change_password')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_manage')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'char_rename')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'customer_info')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_mod')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_del')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'list_of_banned_users')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'log')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'item_add')GOINSERT INTO [dbo].[groups_grants] VALUES (N'1', N'unban_user')GO-- ------------------------------ Table structure for groups_users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[groups_users]') AND type IN ('U'))    DROP TABLE [dbo].[groups_users]GOCREATE TABLE [dbo].[groups_users] (  [groupID] int  NOT NULL,  [userID] int  NULL)GOALTER TABLE [dbo].[groups_users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of groups_users-- ----------------------------INSERT INTO [dbo].[groups_users] VALUES (N'1', N'1')GO-- ------------------------------ Table structure for log-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[log]') AND type IN ('U'))    DROP TABLE [dbo].[log]GOCREATE TABLE [dbo].[log] (  [userID] nvarchar(64) COLLATE French_CI_AS  NULL,  [page] varchar(64) COLLATE French_CI_AS  NULL,  [timestamp] nvarchar(64) COLLATE French_CI_AS  NULL,  [userID2] nvarchar(64) COLLATE French_CI_AS  NULL,  [msg] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg2] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg3] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg4] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL,  [msg5] nvarchar(64) COLLATE French_CI_AS DEFAULT ((0)) NULL)GOALTER TABLE [dbo].[log] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of log-- ----------------------------INSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-03-30 22:33:46', N'1000002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-03-30 22:42:43', N'1000002', N'test (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'item_add', N'2019-05-26 20:00:29', N'100002', N'20180', N'', N'', N'', N'')GOINSERT INTO [dbo].[log] VALUES (N'1', N'unban_user', N'2019-05-31 15:33:01', N'1004655', N'not reason for banned (web from 127.0.0.1 by admin)', N'', N'', N'', N'')GO-- ------------------------------ Table structure for users-- ----------------------------IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID(N'[dbo].[users]') AND type IN ('U'))    DROP TABLE [dbo].[users]GOCREATE TABLE [dbo].[users] (  [id] int  NOT NULL,  [name] varchar(64) COLLATE French_CI_AS  NULL,  [password] varchar(64) COLLATE French_CI_AS  NULL,  [session] nvarchar(64) COLLATE French_CI_AS  NULL,  [access] nvarchar(64) COLLATE French_CI_AS  NULL)GOALTER TABLE [dbo].[users] SET (LOCK_ESCALATION = TABLE)GO-- ------------------------------ Records of users-- ----------------------------INSERT INTO [dbo].[users] VALUES (N'1', N'admin', N'2a1da1e23f38403dbb258359ace90e11', N'5cfbf8833eaa9', N'2019-06-08 15:03:47')GO-- ------------------------------ Primary Key structure for table users-- ----------------------------ALTER TABLE [dbo].[users] ADD CONSTRAINT [PK__users__3213E83F7F60ED59] PRIMARY KEY CLUSTERED ([id])WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON)  ON [PRIMARY]GO
    Yes, I had nothing to do so I decided to recreate the database and I too set some data for some tables and fix the item_mod to update and create, but after I analyzed it I found several vulnerabilities, I do not recommend using it on an external server.

  10. #1480
    ¿ aLca is offline
    MemberRank
    Apr 2013 Join Date
    /dev/nullLocation
    548Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by Yuri-BR View Post
    I found several vulnerabilities, I do not recommend using it on an external server.
    Thats why @AlexRedd hired a Professional Freelancer, to build a whole Admin Panel from scratch for us to use. :)

  11. #1481
    Account Upgraded | Title Enabled! djbadboys38 is offline
    MemberRank
    Aug 2010 Join Date
    TanzanyaLocation
    1,365Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Quote Originally Posted by LukasCCB View Post
    Check your folder -> \server\src\Scripts\thewarz.com-account\admin
    or
    https://mega.nz/#!JqphjATA!lW-2WB59Lv-vYSFhG773eoVldd9gBmYrHQBkdyxQLus
    thank you so much mate

  12. #1482
    Apprentice PANGYEN is offline
    MemberRank
    Oct 2016 Join Date
    18Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Item on player play anm 1% test

  13. #1483
    Apprentice oneped555 is offline
    MemberRank
    Jun 2018 Join Date
    10Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Cat GUN - Sawed off shotgun


  14. #1484
    Account Upgraded | Title Enabled! Oosmar02 is offline
    MemberRank
    Sep 2013 Join Date
    FranceLocation
    894Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Yes i know it's not amazing , but i am happy for my work. My first backpack:





    - - - Updated - - -

    (much specular)

  15. #1485
    Yuri-BR#1559 Yuri-BR is offline
    DeveloperRank
    Apr 2013 Join Date
    ☣️❤️Location
    1,040Posts

    Re: "Show It Off" thread aka "Strut your Stuff"

    Simple code Item Dragged Drop










Advertisement