CREATE DATABASE [DevCoreTool]
CONTAINMENT = NONE
go
-- Login: DevCoreUser / PW: 1234
CREATE LOGIN [DevCoreUser] WITH PASSWORD = 0x02000A437319E90AC25CB68D8393A4307AB3C2D6BF4ECCCA7DC23FEB6A01A9E20A22F0A550E88E6BC29A4FF50401DF6A1D0B3C721BFDCC6ABC71E9FED424F7F9213DC654C44C HASHED, SID = 0x7E8F6EA8DD3B984EBE419D8F2DF0F40D, DEFAULT_DATABASE = [DevCoreTool], CHECK_POLICY = OFF, CHECK_EXPIRATION = OFF
--=============================================================================
--===============*****=====******===*========*=================================
--===============*====*====*=========*======*==================================
--===============*=====*===******====*======*==================================
--===============*=====*===*==========*====*===================================
--===============*====*====*===========*==*====================================
--===============*****=====******=======**=====================================
--=============================================================================
USE [DevCoreTool]
GO
/****** Object: Table [dbo].[BackupTime] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER DATABASE [DevCoreTool] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_NULLS OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_PADDING OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [DevCoreTool] SET ARITHABORT OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [DevCoreTool] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [DevCoreTool] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [DevCoreTool] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [DevCoreTool] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [DevCoreTool] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [DevCoreTool] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [DevCoreTool] SET DISABLE_BROKER
GO
ALTER DATABASE [DevCoreTool] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [DevCoreTool] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [DevCoreTool] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [DevCoreTool] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [DevCoreTool] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [DevCoreTool] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [DevCoreTool] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [DevCoreTool] SET RECOVERY SIMPLE
GO
ALTER DATABASE [DevCoreTool] SET MULTI_USER
GO
ALTER DATABASE [DevCoreTool] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [DevCoreTool] SET DB_CHAINING OFF
GO
ALTER DATABASE [DevCoreTool] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [DevCoreTool] SET TARGET_RECOVERY_TIME = 0 SECONDS
GO
ALTER DATABASE [DevCoreTool] SET DELAYED_DURABILITY = DISABLED
GO
ALTER DATABASE [DevCoreTool] SET READ_WRITE
GO
CREATE TABLE [dbo].[BackupTime](
[d_date] [datetime] NOT NULL DEFAULT (getdate())
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Benutzer] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Benutzer](
[Name] [nchar](10) NOT NULL,
[Password] [nchar](10) NOT NULL,
[permission] [nchar](10) NOT NULL
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Notize] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Notize](
[Notize] [text] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
INSERT [dbo].[BackupTime] ([d_date]) VALUES (CAST(N'' AS DateTime))
INSERT [dbo].[Benutzer] ([Name], [Password], [permission]) VALUES (N'Test01', N'Test01', N'100')
INSERT [dbo].[Benutzer] ([Name], [Password], [permission]) VALUES (N'Test02', N'Test02', N'50')
INSERT [dbo].[Notize] ([Notize]) VALUES (N'DevConTool Online')
CREATE DATABASE [DevCoreTool]
CONTAINMENT = NONE
go
-- Login: DevCoreUser / PW: 1234
CREATE LOGIN [DevCoreUser] WITH PASSWORD = 0x02000A437319E90AC25CB68D8393A4307AB3C2D6BF4ECCCA7DC23FEB6A01A9E20A22F0A550E88E6BC29A4FF50401DF6A1D0B3C721BFDCC6ABC71E9FED424F7F9213DC654C44C HASHED, SID = 0x7E8F6EA8DD3B984EBE419D8F2DF0F40D, DEFAULT_DATABASE = [DevCoreTool], CHECK_POLICY = OFF, CHECK_EXPIRATION = OFF
--=============================================================================
--===============*****=====******===*========*=================================
--===============*====*====*=========*======*==================================
--===============*=====*===******====*======*==================================
--===============*=====*===*==========*====*===================================
--===============*====*====*===========*==*====================================
--===============*****=====******=======**=====================================
--=============================================================================
USE [DevCoreTool]
GO
/****** Object: Table [dbo].[BackupTime] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER DATABASE [DevCoreTool] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_NULLS OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_PADDING OFF
GO
ALTER DATABASE [DevCoreTool] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [DevCoreTool] SET ARITHABORT OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [DevCoreTool] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [DevCoreTool] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [DevCoreTool] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [DevCoreTool] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [DevCoreTool] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [DevCoreTool] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [DevCoreTool] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [DevCoreTool] SET DISABLE_BROKER
GO
ALTER DATABASE [DevCoreTool] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [DevCoreTool] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [DevCoreTool] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [DevCoreTool] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [DevCoreTool] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [DevCoreTool] SET READ_COMMITTED_SNAPSHOT OFF
GO
ALTER DATABASE [DevCoreTool] SET HONOR_BROKER_PRIORITY OFF
GO
ALTER DATABASE [DevCoreTool] SET RECOVERY SIMPLE
GO
ALTER DATABASE [DevCoreTool] SET MULTI_USER
GO
ALTER DATABASE [DevCoreTool] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [DevCoreTool] SET DB_CHAINING OFF
GO
ALTER DATABASE [DevCoreTool] SET FILESTREAM( NON_TRANSACTED_ACCESS = OFF )
GO
ALTER DATABASE [DevCoreTool] SET TARGET_RECOVERY_TIME = 0 SECONDS
GO
ALTER DATABASE [DevCoreTool] SET DELAYED_DURABILITY = DISABLED
GO
ALTER DATABASE [DevCoreTool] SET READ_WRITE
GO
CREATE TABLE [dbo].[BackupTime](
[d_date] [datetime] NOT NULL DEFAULT (getdate())
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Benutzer] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Benutzer](
[Name] [nchar](10) NOT NULL,
[Password] [nchar](10) NOT NULL,
[permission] [nchar](10) NOT NULL
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Notize] Script Date: 12.09.2017 15:27:26 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Notize](
[Notize] [text] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
INSERT [dbo].[BackupTime] ([d_date]) VALUES (CAST(N'' AS DateTime))
INSERT [dbo].[Benutzer] ([Name], [Password], [permission]) VALUES (N'Test01', N'Test01', N'100')
INSERT [dbo].[Benutzer] ([Name], [Password], [permission]) VALUES (N'Test02', N'Test02', N'50')
INSERT [dbo].[Notize] ([Notize]) VALUES (N'DevConTool Online')
I would never trust a tool that needed so many permissions and also required you to open your db ports.
That being said, some constructive criticism:
1. Lose the crazy high contrast color scheme. It is very hard on the eyes and remember when coding a tool it's not about your personal preference but that of the potential user.
2. Give user option to use trusted connection to db:
Above is an example of a property I use in my Database class present in many of my tools. This way the user can specify if they want to define a user/pass or just use Trusted.
Remember trusted is almost always the most secure method of accessing table contents!
3. Understand that there is no true reason for making schema based roles for a program such as this any well setup server is already using schema based database users to begin with and by using Trusted_Connection you bypass any need to login with a user at all.
Nice release and good luck with your future projects!
setup DevCore.rar funktioniert nicht mehr =(
Beim entpacken kommt eine Meldung : Keine Datein zum entpacken vorhanden ?
kann das mal pls jemand neu hochladen ?
[Tool]SRO Taxi Tool V1[Tool] 04/05/2010 - SRO Hacks, Bots, Cheats & Exploits - 19 Replies SRO Taxi Tool V1
Hello all, This is my First Post / Thread.
I made a SRO Taxi Tool.
I have seen some SRO Taxi Tool.
I saw one that was very cool and it got virus so i made my own one.
ScreenShot: