mirror of
https://github.com/mainnika/a-quest.git
synced 2026-07-03 17:42:33 +00:00
add letter to task3
This commit is contained in:
@@ -6,7 +6,10 @@ import (
|
|||||||
"crypto/ecdsa"
|
"crypto/ecdsa"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"os"
|
||||||
|
"path"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@@ -17,7 +20,9 @@ import (
|
|||||||
"github.com/docker/docker/api/types/network"
|
"github.com/docker/docker/api/types/network"
|
||||||
"github.com/docker/docker/client"
|
"github.com/docker/docker/client"
|
||||||
"github.com/go-redis/redis/v7"
|
"github.com/go-redis/redis/v7"
|
||||||
|
"github.com/google/uuid"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
|
"golang.org/x/sys/unix"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
@@ -174,6 +179,11 @@ func (s *Server) readKey(conn net.Conn) (key string, err error) {
|
|||||||
|
|
||||||
func (s *Server) createJail(now int64, claims *jwtgo.StandardClaims) (id string, err error) {
|
func (s *Server) createJail(now int64, claims *jwtgo.StandardClaims) (id string, err error) {
|
||||||
|
|
||||||
|
letterPath, letterFullPath, err := createLetterProtected(s.LetterPath)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
name := fmt.Sprintf("%d-%s", now, claims.Id)
|
name := fmt.Sprintf("%d-%s", now, claims.Id)
|
||||||
cfg := &container.Config{
|
cfg := &container.Config{
|
||||||
NetworkDisabled: true,
|
NetworkDisabled: true,
|
||||||
@@ -187,10 +197,9 @@ func (s *Server) createJail(now int64, claims *jwtgo.StandardClaims) (id string,
|
|||||||
Cmd: []string{"/bin/sh"},
|
Cmd: []string{"/bin/sh"},
|
||||||
}
|
}
|
||||||
letter := mount.Mount{
|
letter := mount.Mount{
|
||||||
Type: mount.TypeBind,
|
Type: mount.TypeBind,
|
||||||
Source: s.LetterPath,
|
Source: letterFullPath,
|
||||||
Target: "/letter",
|
Target: fmt.Sprintf("/%s", letterPath),
|
||||||
ReadOnly: true,
|
|
||||||
}
|
}
|
||||||
hcfg := &container.HostConfig{
|
hcfg := &container.HostConfig{
|
||||||
NetworkMode: "none",
|
NetworkMode: "none",
|
||||||
@@ -307,3 +316,31 @@ func createProxyChan(conn net.Conn, closed *uint32) (out chan []byte) {
|
|||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func createLetterProtected(sourcePath string) (letterPath string, letterFullPath string, err error) {
|
||||||
|
|
||||||
|
source, err := os.Open(sourcePath)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer source.Close()
|
||||||
|
|
||||||
|
tmpPath := os.TempDir()
|
||||||
|
letterPath = fmt.Sprintf("%s.letter", uuid.New().String())
|
||||||
|
letterFullPath = path.Join(tmpPath, letterPath)
|
||||||
|
|
||||||
|
letter, err := os.OpenFile(letterFullPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0000)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer letter.Close()
|
||||||
|
|
||||||
|
_, err = io.Copy(letter, source)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = unix.Sync()
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user